Overhaul alert URLs for current NWS usage
authorJeremy Stanley <fungi@yuggoth.org>
Thu, 9 May 2024 00:08:03 +0000 (00:08 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Thu, 9 May 2024 01:44:09 +0000 (01:44 +0000)
NWS switched to using FIPS based county designations for flood
warnings around 2016, so fix the URLs for them. Also flash flood
statements and warnings (but nor watches which, for some reason,
still use WX weather zones). Severe weather statements too (but not
special weather statements nor urgent weather messages). Oh, and
thunderstorms.

Add a new tornado alert type with relevant URLs, and fix
configuration examples which reference the older tornado_warning
field which hasn't been available for years.

While at it, remove the separate flood statement alert which seems
to be entirely unused by NWS.

weather.1
weather.py
weatherrc.5
zones

index 60e7133..95eb2e6 100644 (file)
--- a/weather.1
+++ b/weather.1
@@ -87,7 +87,7 @@ include local alert notices
 .TP
 .BR \-\-atypes =\fIATYPES\fR
 list of alert notification types to display (ex:
-.BR tornado_warning,urgent_weather_message )
+.BR tornado,urgent_weather_message )
 .TP
 .BR \-\-build\-sets
 (re)build location correlation sets
index 8187fb6..4103dee 100644 (file)
@@ -406,11 +406,11 @@ def get_options(config):
             + "flash_flood_statement," \
             + "flash_flood_warning," \
             + "flash_flood_watch," \
-            + "flood_statement," \
             + "flood_warning," \
             + "severe_thunderstorm_warning," \
             + "severe_weather_statement," \
             + "special_weather_statement," \
+            + "tornado," \
             + "urgent_weather_message"
     option_parser.add_option("--atypes",
         dest="atypes",
@@ -1530,6 +1530,9 @@ def correlate():
             zone = "z".join( fields[:2] ).lower()
             if zone in zones:
                 state = fields[0]
+                description = fields[3].strip()
+                fips = "fips%s"%fields[6]
+                countycode = "%sc%s" % (state.lower(), fips[-3:])
                 if state:
                     zones[zone]["coastal_flood_statement"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
@@ -1537,27 +1540,25 @@ def correlate():
                     zones[zone]["flash_flood_statement"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
                         "flash_flood/statement/%s/%s.txt"
-                        % (state.lower(), zone))
+                        % (state.lower(), countycode))
                     zones[zone]["flash_flood_warning"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
                         "flash_flood/warning/%s/%s.txt"
-                        % (state.lower(), zone))
+                        % (state.lower(), countycode))
                     zones[zone]["flash_flood_watch"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
                         "flash_flood/watch/%s/%s.txt" % (state.lower(), zone))
-                    zones[zone]["flood_statement"] = (
-                        "https://tgftp.nws.noaa.gov/data/watches_warnings/"
-                        "flood/statement/%s/%s.txt" % (state.lower(), zone))
                     zones[zone]["flood_warning"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
-                        "flood/warning/%s/%s.txt" % (state.lower(), zone))
+                        "flood/warning/%s/%s.txt"
+                        % (state.lower(), countycode))
                     zones[zone]["severe_thunderstorm_warning"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
-                        "thunderstorm/%s/%s.txt" % (state.lower(), zone))
+                        "thunderstorm/%s/%s.txt" % (state.lower(), countycode))
                     zones[zone]["severe_weather_statement"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
                         "severe_weather_stmt/%s/%s.txt"
-                        % (state.lower(), zone))
+                        % (state.lower(), countycode))
                     zones[zone]["short_term_forecast"] = (
                         "https://tgftp.nws.noaa.gov/data/forecasts/nowcast/"
                         "%s/%s.txt" % (state.lower(), zone))
@@ -1568,14 +1569,15 @@ def correlate():
                     zones[zone]["state_forecast"] = (
                         "https://tgftp.nws.noaa.gov/data/forecasts/state/"
                         "%s/%s.txt" % (state.lower(), zone))
+                    zones[zone]["tornado"] = (
+                        "https://tgftp.nws.noaa.gov/data/watches_warnings/"
+                        "tornado/%s/%s.txt" % (state.lower(), countycode))
                     zones[zone]["urgent_weather_message"] = (
                         "https://tgftp.nws.noaa.gov/data/watches_warnings/"
                         "non_precip/%s/%s.txt" % (state.lower(), zone))
                     zones[zone]["zone_forecast"] = (
                         "https://tgftp.nws.noaa.gov/data/forecasts/zone/"
                         "%s/%s.txt" % (state.lower(), zone))
-                description = fields[3].strip()
-                fips = "fips%s"%fields[6]
                 county = fields[5]
                 if county:
                     if description.endswith(county):
index 179c109..9d2001d 100644 (file)
@@ -29,7 +29,7 @@ include local alert notices (possible values are
 .TP
 .B atypes
 list of alert notification types to display (ex:
-.BR tornado_warning,urgent_weather_message )
+.BR tornado,urgent_weather_message )
 .TP
 .B cache
 control all caching (possible values are
diff --git a/zones b/zones
index d20bee2..7aa2472 100644 (file)
--- a/zones
+++ b/zones
 centroid = (1.0686511, -2.6065899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz102.txt
 description = Anchorage County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc020.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc020.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc020.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc020.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc020.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz102.txt
 station = ('pabv', 0.0035685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc020.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz102.txt
 
@@ -46,17 +46,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz102.txt
 centroid = (1.0653088, -2.5966328)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz103.txt
 description = East Turnagain Arm, Anchorage County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc020.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc020.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc020.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc020.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc020.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz103.txt
 station = ('pato', 0.0044836)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc020.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz103.txt
 
@@ -64,17 +64,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz103.txt
 centroid = (1.0760269, -2.6040958)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz112.txt
 description = Matanuska Valley, Matanuska-Susitna County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc170.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc170.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc170.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc170.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc170.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz112.txt
 station = ('paaq', 0.0012479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz112.txt
 
@@ -82,17 +82,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz112.txt
 centroid = (1.0528769, -2.6303683)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz121.txt
 description = Western Kenai Peninsula County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc122.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc122.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc122.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc122.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc122.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz121.txt
 station = ('pasx', 0.0039260)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc122.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz121.txt
 
@@ -100,17 +100,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz121.txt
 centroid = (1.0529187, -2.6011637)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz126.txt
 description = Western Prince William Sound, Chugach County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz126.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz126.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz126.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz126.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz126.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz126.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz126.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz126.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz126.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz126.txt
 station = ('pawd', 0.0051454)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz126.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz126.txt
 
@@ -118,17 +118,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz126.txt
 centroid = (1.0665707, -2.5535075)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz132.txt
 description = Northeast Prince William Sound, Chugach County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz132.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz132.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz132.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz132.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz132.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz132.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz132.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz132.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz132.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz132.txt
 station = ('pavd', 0.0005209)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz132.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz132.txt
 
@@ -136,17 +136,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz132.txt
 centroid = (1.0564216, -2.5295825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz135.txt
 description = Southeast Prince William Sound, Chugach County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz135.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz135.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz135.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz135.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz135.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz135.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz135.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz135.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz135.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz135.txt
 station = ('pacv', 0.0047418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz135.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz135.txt
 
@@ -154,17 +154,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz135.txt
 centroid = (1.0811110, -2.5268022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz142.txt
 description = Copper River Basin, Chugach County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz142.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz142.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz142.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz142.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz142.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz142.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz142.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz142.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz142.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz142.txt
 station = ('pagk', 0.0065975)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz142.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz142.txt
 
@@ -172,17 +172,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz142.txt
 centroid = (1.0836819, -2.6307959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz145.txt
 description = Susitna Valley, Matanuska-Susitna County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz145.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz145.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc170.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc170.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz145.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz145.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz145.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz145.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz145.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc170.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc170.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc170.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz145.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz145.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz145.txt
 station = ('patk', 0.0064946)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz145.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz145.txt
 
@@ -190,17 +190,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz145.txt
 centroid = (1.0723216, -2.7310964)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz152.txt
 description = Lower Kuskokwim Valley, Matanuska-Susitna County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz152.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz152.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc170.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc170.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz152.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz152.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz152.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz152.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz152.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc170.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc170.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc170.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz152.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz152.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz152.txt
 station = ('pasl', 0.0073722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz152.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz152.txt
 
@@ -208,17 +208,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz152.txt
 centroid = (1.0583746, -2.8384377)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz155.txt
 description = Kuskokwim Delta, Bethel County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz155.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz155.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc050.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc050.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz155.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz155.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz155.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz155.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz155.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc050.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc050.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc050.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz155.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz155.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz155.txt
 station = ('ppit', 0.0049036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc050.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz155.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz155.txt
 
@@ -226,17 +226,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz155.txt
 centroid = (1.0349523, -2.7444447)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz161.txt
 description = Bristol Bay, Lake and Peninsula County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz161.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz161.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc164.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc164.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz161.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz161.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz161.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz161.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz161.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc164.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc164.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc164.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz161.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz161.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz161.txt
 station = ('panw', 0.0029123)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz161.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz161.txt
 
@@ -244,17 +244,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz161.txt
 centroid = (1.0173716, -2.6906502)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz171.txt
 description = Kodiak Island, Lake and Peninsula County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz171.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz171.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc164.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc164.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz171.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz171.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz171.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz171.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz171.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc164.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc164.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc164.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz171.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz171.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz171.txt
 station = ('padq', 0.0181711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz171.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz171.txt
 
@@ -262,17 +262,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz171.txt
 centroid = (0.9705706, -2.8135301)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz181.txt
 description = Alaska Peninsula, Lake and Peninsula County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz181.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz181.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc164.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc164.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz181.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz181.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz181.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz181.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz181.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc164.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc164.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc164.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz181.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz181.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz181.txt
 station = ('paou', 0.0069577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz181.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz181.txt
 
@@ -280,17 +280,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz181.txt
 centroid = (0.9354668, -2.9182760)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz185.txt
 description = Eastern Aleutians, Aleutians West County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz185.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz185.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc016.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc016.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz185.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz185.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz185.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz185.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz185.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc016.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc016.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc016.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz185.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz185.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz185.txt
 station = ('padu', 0.0087042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz185.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz185.txt
 
@@ -298,17 +298,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz185.txt
 centroid = (0.9086411, -3.0555741)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz187.txt
 description = Central Aleutians, Aleutians West County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz187.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz187.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc016.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc016.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz187.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz187.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz187.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz187.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz187.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc016.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc016.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc016.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz187.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz187.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz187.txt
 station = ('paak', 0.0096731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz187.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz187.txt
 
@@ -316,17 +316,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz187.txt
 centroid = (0.9139556, 3.0637388)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz191.txt
 description = Western Aleutians, Aleutians West County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz191.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz191.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc016.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc016.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz191.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz191.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz191.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz191.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz191.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc016.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc016.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc016.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz191.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz191.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz191.txt
 station = ('pasy', 0.0162952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz191.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz191.txt
 
@@ -334,17 +334,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz191.txt
 centroid = (0.9932529, -2.9666932)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz195.txt
 description = Pribilof Islands, Aleutians West County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz195.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz195.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc016.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc016.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz195.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz195.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz195.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz195.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz195.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc016.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc016.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc016.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz195.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz195.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz195.txt
 station = ('pasn', 0.0050285)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz195.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz195.txt
 
@@ -352,17 +352,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz195.txt
 centroid = (1.0454644, -2.4504423)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz317.txt
 description = City and Borough of Yakutat County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz317.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz317.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc282.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc282.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz317.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz317.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz317.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz317.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz317.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc282.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc282.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc282.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz317.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz317.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz317.txt
 station = ('paya', 0.0095187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc282.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz317.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz317.txt
 
@@ -370,17 +370,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz317.txt
 centroid = (1.0395774, -2.3620640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz318.txt
 description = Municipality of Skagway County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz318.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz318.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc230.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc230.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz318.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz318.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz318.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz318.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz318.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc230.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc230.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc230.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz318.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz318.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz318.txt
 station = ('pagy', 0.0016972)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc230.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz318.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz318.txt
 
@@ -388,17 +388,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz318.txt
 centroid = (1.0318928, -2.3649718)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz319.txt
 description = Haines Borough and Klukwan, Haines County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz319.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz319.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc100.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc100.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz319.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz319.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz319.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz319.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz319.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc100.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc100.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc100.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz319.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz319.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz319.txt
 station = ('pahn', 0.0022182)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc100.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz319.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz319.txt
 
@@ -406,17 +406,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz319.txt
 centroid = (1.0261122, -2.3801753)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz320.txt
 description = Glacier Bay, Hoonah-Angoon County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz320.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz320.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz320.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz320.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz320.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz320.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz320.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz320.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz320.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz320.txt
 station = ('pael', 0.0103329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz320.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz320.txt
 
@@ -424,17 +424,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz320.txt
 centroid = (1.0128530, -2.3654587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz321.txt
 description = Eastern Chichagof Island, Hoonah-Angoon County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz321.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz321.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz321.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz321.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz321.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz321.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz321.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz321.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz321.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz321.txt
 station = ('paoh', 0.0016521)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz321.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz321.txt
 
@@ -442,17 +442,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz321.txt
 centroid = (1.0190890, -2.3896071)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz322.txt
 description = Cape Fairweather to Lisianski Strait, Hoonah-Angoon County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz322.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz322.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz322.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz322.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz322.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz322.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz322.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz322.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz322.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz322.txt
 station = ('pael', 0.0061433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz322.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz322.txt
 
@@ -460,17 +460,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz322.txt
 centroid = (0.9989706, -2.3614619)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz323.txt
 description = City and Borough of Sitka County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz323.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz323.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc220.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc220.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz323.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz323.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz323.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz323.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz323.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc220.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc220.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc220.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz323.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz323.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz323.txt
 station = ('pasi', 0.0033176)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc220.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz323.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz323.txt
 
@@ -478,17 +478,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz323.txt
 centroid = (1.0071196, -2.3402369)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz324.txt
 description = Admiralty Island, Hoonah-Angoon County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz324.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz324.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz324.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz324.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz324.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz324.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz324.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz324.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz324.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz324.txt
 station = ('pagn', 0.0058562)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz324.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz324.txt
 
@@ -496,17 +496,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz324.txt
 centroid = (1.0202916, -2.3418601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz325.txt
 description = City and Borough of Juneau County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz325.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz325.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc110.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc110.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz325.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz325.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz325.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz325.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz325.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc110.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc110.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc110.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz325.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz325.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz325.txt
 station = ('pajn', 0.0040206)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc110.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz325.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz325.txt
 
@@ -514,17 +514,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz325.txt
 centroid = (0.9971729, -2.3200295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz326.txt
 description = Petersburg Borough County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz326.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz326.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz326.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz326.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz326.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz326.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz326.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz326.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz326.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz326.txt
 station = ('papg', 0.0055473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz326.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz326.txt
 
@@ -532,17 +532,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz326.txt
 centroid = (0.9886226, -2.3369767)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz327.txt
 description = Western Kupreanof and Kuiu Island, Prince of Wales-Hyder County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz327.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz327.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc198.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc198.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz327.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz327.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz327.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz327.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz327.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc198.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc198.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc198.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz327.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz327.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz327.txt
 station = ('pafe', 0.0053425)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz327.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz327.txt
 
@@ -550,17 +550,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz327.txt
 centroid = (0.9686612, -2.3192075)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz328.txt
 description = Prince of Wales Island, Prince of Wales-Hyder County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz328.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz328.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc198.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc198.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz328.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz328.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz328.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz328.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz328.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc198.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc198.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc198.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz328.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz328.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz328.txt
 station = ('pakw', 0.0024709)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz328.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz328.txt
 
@@ -568,17 +568,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz328.txt
 centroid = (0.9831893, -2.3040353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz329.txt
 description = City and Borough of Wrangell County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz329.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz329.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc275.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc275.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz329.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz329.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz329.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz329.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz329.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc275.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc275.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc275.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz329.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz329.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz329.txt
 station = ('pawg', 0.0043224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc275.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz329.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz329.txt
 
@@ -586,17 +586,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz329.txt
 centroid = (0.9703507, -2.2851631)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz330.txt
 description = Ketchikan Gateway Borough, Ketchikan County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz330.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz330.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc130.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc130.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz330.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz330.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz330.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz330.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz330.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc130.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc130.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc130.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz330.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz330.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz330.txt
 station = ('czst', 0.0109952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc130.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz330.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz330.txt
 
@@ -604,17 +604,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz330.txt
 centroid = (0.9766321, -2.2719544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz331.txt
 description = City of Hyder, Prince of Wales-Hyder County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz331.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz331.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc198.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc198.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz331.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz331.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz331.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz331.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz331.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc198.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc198.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc198.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz331.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz331.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz331.txt
 station = ('czst', 0.0019026)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz331.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz331.txt
 
@@ -622,17 +622,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz331.txt
 centroid = (0.9621599, -2.2948514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz332.txt
 description = Annette Island, Prince of Wales-Hyder County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz332.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz332.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc198.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc198.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz332.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz332.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz332.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz332.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz332.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc198.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc198.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc198.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz332.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz332.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz332.txt
 station = ('pamm', 0.0009275)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz332.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz332.txt
 
@@ -640,17 +640,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz332.txt
 centroid = (1.2044954, -2.8641970)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz801.txt
 description = Western Arctic Coast, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz801.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz801.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz801.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz801.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz801.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz801.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz801.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz801.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz801.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz801.txt
 station = ('padg', 0.0187695)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz801.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz801.txt
 
@@ -658,17 +658,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz801.txt
 centroid = (1.2269996, -2.7839398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz802.txt
 description = Northwest Arctic Coast, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz802.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz802.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz802.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz802.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz802.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz802.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz802.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz802.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz802.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz802.txt
 station = ('pawi', 0.0065466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz802.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz802.txt
 
@@ -676,17 +676,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz802.txt
 centroid = (1.2337261, -2.7117390)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz803.txt
 description = Northern Arctic Coast, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz803.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz803.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz803.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz803.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz803.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz803.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz803.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz803.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz803.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz803.txt
 station = ('pabr', 0.0130831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz803.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz803.txt
 
@@ -694,17 +694,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz803.txt
 centroid = (1.2253416, -2.6103441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz804.txt
 description = Central Beaufort Sea Coast, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz804.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz804.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz804.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz804.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz804.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz804.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz804.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz804.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz804.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz804.txt
 station = ('paku', 0.0019200)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz804.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz804.txt
 
@@ -712,17 +712,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz804.txt
 centroid = (1.2191875, -2.5133858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz805.txt
 description = Eastern Beaufort Sea Coast, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz805.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz805.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz805.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz805.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz805.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz805.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz805.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz805.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz805.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz805.txt
 station = ('paba', 0.0055125)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz805.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz805.txt
 
@@ -730,17 +730,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz805.txt
 centroid = (1.2120404, -2.7408651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz806.txt
 description = Western Arctic Plains, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz806.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz806.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz806.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz806.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz806.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz806.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz806.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz806.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz806.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz806.txt
 station = ('patq', 0.0179979)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz806.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz806.txt
 
@@ -748,17 +748,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz806.txt
 centroid = (1.1947041, -2.7840061)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz807.txt
 description = Howard Pass and the Delong Mountains, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz807.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz807.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz807.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz807.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz807.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz807.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz807.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz807.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz807.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz807.txt
 station = ('pafm', 0.0260122)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz807.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz807.txt
 
@@ -766,17 +766,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz807.txt
 centroid = (1.2111747, -2.6187636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz808.txt
 description = Central Arctic Plains, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz808.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz808.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz808.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz808.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz808.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz808.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz808.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz808.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz808.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz808.txt
 station = ('pagb', 0.0162989)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz808.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz808.txt
 
@@ -784,17 +784,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz808.txt
 centroid = (1.1947163, -2.6355920)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz809.txt
 description = Central Brooks Range, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz809.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz809.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz809.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz809.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz809.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz809.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz809.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz809.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz809.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz809.txt
 station = ('pakp', 0.0073096)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz809.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz809.txt
 
@@ -802,17 +802,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz809.txt
 centroid = (1.2034708, -2.5290851)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz810.txt
 description = Romanzof Mountains, North Slope County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz810.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz810.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz810.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz810.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz810.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz810.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz810.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz810.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz810.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz810.txt
 station = ('paad', 0.0222923)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz810.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz810.txt
 
@@ -820,17 +820,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz810.txt
 centroid = (1.1841553, -2.5293329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz811.txt
 description = South Slopes of the Eastern Brooks Range, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz811.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz811.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz811.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz811.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz811.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz811.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz811.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz811.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz811.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz811.txt
 station = ('pfyu', 0.0224702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz811.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz811.txt
 
@@ -838,17 +838,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz811.txt
 centroid = (1.1792247, -2.6522145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz812.txt
 description = South Slopes of the Central Brooks Range, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz812.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz812.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz812.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz812.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz812.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz812.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz812.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz812.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz812.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz812.txt
 station = ('pakp', 0.0100336)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz812.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz812.txt
 
@@ -856,17 +856,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz812.txt
 centroid = (1.1802667, -2.7451952)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz813.txt
 description = South Slopes of the Western Brooks Range, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz813.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz813.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz813.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz813.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz813.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz813.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz813.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz813.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz813.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz813.txt
 station = ('pafm', 0.0098987)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz813.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz813.txt
 
@@ -874,17 +874,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz813.txt
 centroid = (1.1814064, -2.8262762)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz814.txt
 description = Noatak Valley, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz814.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz814.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz814.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz814.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz814.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz814.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz814.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz814.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz814.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz814.txt
 station = ('padg', 0.0087202)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz814.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz814.txt
 
@@ -892,17 +892,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz814.txt
 centroid = (1.1799089, -2.8651081)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz815.txt
 description = Kivalina and Red Dog Dock, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz815.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz815.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz815.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz815.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz815.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz815.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz815.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz815.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz815.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz815.txt
 station = ('pavl', 0.0034421)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz815.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz815.txt
 
@@ -910,17 +910,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz815.txt
 centroid = (1.1641556, -2.8026602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz816.txt
 description = Lower Kobuk Valley, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz816.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz816.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz816.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz816.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz816.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz816.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz816.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz816.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz816.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz816.txt
 station = ('paik', 0.0050268)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz816.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz816.txt
 
@@ -928,17 +928,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz816.txt
 centroid = (1.1617243, -2.8224295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz817.txt
 description = Baldwin Peninsula, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz817.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz817.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz817.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz817.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz817.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz817.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz817.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz817.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz817.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz817.txt
 station = ('pabl', 0.0108582)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz817.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz817.txt
 
@@ -946,17 +946,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz817.txt
 centroid = (1.1495611, -2.8221468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz818.txt
 description = Northern Seward Peninsula, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz818.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz818.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz818.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz818.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz818.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz818.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz818.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz818.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz818.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz818.txt
 station = ('pabl', 0.0043877)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz818.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz818.txt
 
@@ -964,17 +964,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz818.txt
 centroid = (1.1654436, -2.7469004)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz819.txt
 description = Upper Kobuk Valleys, Northwest Arctic County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz819.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz819.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc188.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc188.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz819.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz819.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz819.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz819.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz819.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc188.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc188.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc188.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz819.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz819.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz819.txt
 station = ('pagh', 0.0025016)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz819.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz819.txt
 
@@ -982,17 +982,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz819.txt
 centroid = (1.1539593, -2.8949253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz820.txt
 description = Shishmaref, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz820.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz820.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz820.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz820.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz820.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz820.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz820.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz820.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz820.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz820.txt
 station = ('pash', 0.0030243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz820.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz820.txt
 
@@ -1000,17 +1000,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz820.txt
 centroid = (1.1418886, -2.9082439)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz821.txt
 description = Bering Strait Coast, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz821.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz821.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz821.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz821.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz821.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz821.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz821.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz821.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz821.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz821.txt
 station = ('pfkt', 0.0020147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz821.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz821.txt
 
@@ -1018,17 +1018,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz821.txt
 centroid = (1.1277375, -2.8708415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz822.txt
 description = Southern Seward Peninsula Coast, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz822.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz822.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz822.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz822.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz822.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz822.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz822.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz822.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz822.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz822.txt
 station = ('pagl', 0.0109169)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz822.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz822.txt
 
@@ -1036,17 +1036,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz822.txt
 centroid = (1.1391310, -2.8586538)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz823.txt
 description = Interior Seward Peninsula, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz823.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz823.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz823.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz823.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz823.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz823.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz823.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz823.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz823.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz823.txt
 station = ('pawm', 0.0104658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz823.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz823.txt
 
@@ -1054,17 +1054,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz823.txt
 centroid = (1.1206899, -2.8079555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz824.txt
 description = Eastern Norton Sound and Nulato Hills, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz824.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz824.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz824.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz824.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz824.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz824.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz824.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz824.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz824.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz824.txt
 station = ('paun', 0.0057513)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz824.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz824.txt
 
@@ -1072,17 +1072,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz824.txt
 centroid = (1.0847448, -2.8666405)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz825.txt
 description = Yukon Delta Coast, Kusilvak County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz825.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz825.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc158.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc158.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz825.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz825.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz825.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz825.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz825.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc158.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc158.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc158.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz825.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz825.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz825.txt
 station = ('pamo', 0.0047080)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc158.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz825.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz825.txt
 
@@ -1090,17 +1090,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz825.txt
 centroid = (1.0849176, -2.8282450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz826.txt
 description = Lower Yukon River, Kusilvak County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz826.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz826.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc158.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc158.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz826.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz826.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz826.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz826.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz826.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc158.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc158.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc158.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz826.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz826.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz826.txt
 station = ('padm', 0.0051846)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc158.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz826.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz826.txt
 
@@ -1108,17 +1108,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz826.txt
 centroid = (1.1063555, -2.9730305)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz827.txt
 description = St. Lawrence Island, Nome County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz827.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz827.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc180.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc180.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz827.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz827.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz827.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz827.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz827.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc180.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc180.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc180.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz827.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz827.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz827.txt
 station = ('pasa', 0.0052734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz827.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz827.txt
 
@@ -1126,17 +1126,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz827.txt
 centroid = (1.1461246, -2.7375158)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz828.txt
 description = Lower Koyukuk Valley, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz828.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz828.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz828.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz828.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz828.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz828.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz828.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz828.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz828.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz828.txt
 station = ('pahl', 0.0036085)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz828.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz828.txt
 
@@ -1144,17 +1144,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz828.txt
 centroid = (1.1252033, -2.7362574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz829.txt
 description = Middle Yukon Valley, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz829.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz829.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz829.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz829.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz829.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz829.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz829.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz829.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz829.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz829.txt
 station = ('paga', 0.0047547)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz829.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz829.txt
 
@@ -1162,17 +1162,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz829.txt
 centroid = (1.1007338, -2.7633624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz830.txt
 description = Lower Yukon and Innoko Valleys, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz830.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz830.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz830.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz830.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz830.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz830.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz830.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz830.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz830.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz830.txt
 station = ('pahc', 0.0192357)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz830.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz830.txt
 
@@ -1180,17 +1180,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz830.txt
 centroid = (1.1580731, -2.6684461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz831.txt
 description = Upper Koyukuk Valley, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz831.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz831.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz831.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz831.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz831.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz831.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz831.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz831.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz831.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz831.txt
 station = ('pabt', 0.0134813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz831.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz831.txt
 
@@ -1198,17 +1198,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz831.txt
 centroid = (1.1572301, -2.6229768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz832.txt
 description = Dalton Highway Summits, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz832.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz832.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz832.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz832.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz832.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz832.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz832.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz832.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz832.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz832.txt
 station = ('papr', 0.0092151)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz832.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz832.txt
 
@@ -1216,17 +1216,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz832.txt
 centroid = (1.1607103, -2.5239398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz833.txt
 description = Yukon Flats, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz833.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz833.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz833.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz833.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz833.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz833.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz833.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz833.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz833.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz833.txt
 station = ('pfyu', 0.0046862)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz833.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz833.txt
 
@@ -1234,17 +1234,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz833.txt
 centroid = (1.1423826, -2.5626285)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz834.txt
 description = White Mountains and High Terrain South of the Yukon River, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz834.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz834.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz834.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz834.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz834.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz834.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz834.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz834.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz834.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz834.txt
 station = ('pafb', 0.0121636)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz834.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz834.txt
 
@@ -1252,17 +1252,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz834.txt
 centroid = (1.1231368, -2.4879215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz835.txt
 description = Fortymile Country, Southeast Fairbanks County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz835.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz835.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc240.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc240.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz835.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz835.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz835.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz835.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz835.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc240.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc240.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc240.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz835.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz835.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz835.txt
 station = ('paeg', 0.0129085)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz835.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz835.txt
 
@@ -1270,17 +1270,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz835.txt
 centroid = (1.0995854, -2.4875829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz836.txt
 description = Upper Tanana Valley, Southeast Fairbanks County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz836.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz836.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc240.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc240.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz836.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz836.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz836.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz836.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz836.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc240.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc240.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc240.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz836.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz836.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz836.txt
 station = ('pfto', 0.0066344)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz836.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz836.txt
 
@@ -1288,17 +1288,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz836.txt
 centroid = (1.1181818, -2.5422518)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz837.txt
 description = Delta Junction, Southeast Fairbanks County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz837.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz837.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc240.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc240.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz837.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz837.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz837.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz837.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz837.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc240.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc240.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc240.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz837.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz837.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz837.txt
 station = ('pabi', 0.0012478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz837.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz837.txt
 
@@ -1306,17 +1306,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz837.txt
 centroid = (1.1315476, -2.5378990)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz838.txt
 description = Upper Chena River Valley, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz838.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz838.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz838.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz838.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz838.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz838.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz838.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz838.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz838.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz838.txt
 station = ('pabi', 0.0147183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz838.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz838.txt
 
@@ -1324,17 +1324,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz838.txt
 centroid = (1.1254895, -2.5757569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz839.txt
 description = Tanana Flats, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz839.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz839.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz839.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz839.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz839.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz839.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz839.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz839.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz839.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz839.txt
 station = ('paei', 0.0045996)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz839.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz839.txt
 
@@ -1342,17 +1342,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz839.txt
 centroid = (1.1270132, -2.5621992)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz840.txt
 description = Eielson Air Force Base and Salcha, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz840.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz840.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz840.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz840.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz840.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz840.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz840.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz840.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz840.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz840.txt
 station = ('paei', 0.0025950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz840.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz840.txt
 
@@ -1360,17 +1360,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz840.txt
 centroid = (1.1313678, -2.5901437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz841.txt
 description = Goldstream Valley and Nenana Hills, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz841.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz841.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz841.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz841.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz841.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz841.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz841.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz841.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz841.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz841.txt
 station = ('pafa', 0.0039367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz841.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz841.txt
 
@@ -1378,17 +1378,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz841.txt
 centroid = (1.1370035, -2.5741652)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz842.txt
 description = Chatanika River Valley, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz842.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz842.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz842.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz842.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz842.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz842.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz842.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz842.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz842.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz842.txt
 station = ('pafb', 0.0054928)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz842.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz842.txt
 
@@ -1396,17 +1396,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz842.txt
 centroid = (1.1329805, -2.5632935)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz843.txt
 description = Two Rivers, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz843.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz843.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz843.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz843.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz843.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz843.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz843.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz843.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz843.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz843.txt
 station = ('paei', 0.0049419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz843.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz843.txt
 
@@ -1414,17 +1414,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz843.txt
 centroid = (1.1317849, -2.5775022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz844.txt
 description = Fairbanks Metro Area, Fairbanks North Star County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz844.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz844.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc090.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc090.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz844.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz844.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz844.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz844.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz844.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc090.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc090.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc090.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz844.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz844.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz844.txt
 station = ('pafa', 0.0016349)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz844.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz844.txt
 
@@ -1432,17 +1432,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz844.txt
 centroid = (1.1263884, -2.5968248)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz845.txt
 description = Nenana, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz845.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz845.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz845.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz845.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz845.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz845.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz845.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz845.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz845.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz845.txt
 station = ('pann', 0.0021089)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz845.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz845.txt
 
@@ -1450,17 +1450,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz845.txt
 centroid = (1.1301199, -2.6499037)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz846.txt
 description = Central Interior, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz846.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz846.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz846.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz846.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz846.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz846.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz846.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz846.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz846.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz846.txt
 station = ('pata', 0.0075256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz846.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz846.txt
 
@@ -1468,17 +1468,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz846.txt
 centroid = (1.1138011, -2.6197287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz847.txt
 description = Northern Denali Borough, Denali County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz847.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz847.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc068.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc068.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz847.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz847.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz847.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz847.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz847.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc068.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc068.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc068.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz847.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz847.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz847.txt
 station = ('pain', 0.0092355)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc068.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz847.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz847.txt
 
@@ -1486,17 +1486,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz847.txt
 centroid = (1.1052263, -2.6142379)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz848.txt
 description = Southern Denali Borough, Denali County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz848.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz848.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc068.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc068.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz848.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz848.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz848.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz848.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz848.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc068.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc068.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc068.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz848.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz848.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz848.txt
 station = ('pain', 0.0098210)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc068.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz848.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz848.txt
 
@@ -1504,17 +1504,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz848.txt
 centroid = (1.1121866, -2.5442590)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz849.txt
 description = Eastern Alaska Range North of Trims Camp, Southeast Fairbanks County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz849.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz849.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc240.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc240.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz849.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz849.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz849.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz849.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz849.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc240.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc240.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc240.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz849.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz849.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz849.txt
 station = ('pabi', 0.0048451)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz849.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz849.txt
 
@@ -1522,17 +1522,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz849.txt
 centroid = (1.1050325, -2.5326839)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz850.txt
 description = Eastern Alaska Range South of Trims Camp, Southeast Fairbanks County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz850.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz850.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc240.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc240.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz850.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz850.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz850.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz850.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz850.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc240.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc240.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc240.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz850.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz850.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz850.txt
 station = ('pabi', 0.0128607)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz850.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz850.txt
 
@@ -1540,17 +1540,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz850.txt
 centroid = (1.0909756, -2.6853775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz851.txt
 description = North Slopes of the Western Alaska Range, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz851.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz851.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz851.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz851.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz851.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz851.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz851.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz851.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz851.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz851.txt
 station = ('pafs', 0.0097492)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz851.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz851.txt
 
@@ -1558,17 +1558,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz851.txt
 centroid = (1.0970040, -2.7091489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ak/akz852.txt
 description = Upper Kuskokwim Valley, Yukon-Koyukuk County, AK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akz852.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akz852.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ak/akc290.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ak/akc290.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ak/akz852.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ak/akz852.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akz852.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akz852.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akz852.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ak/akc290.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ak/akc290.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ak/akc290.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ak/akz852.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ak/akz852.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz852.txt
 station = ('pamc', 0.0034377)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz852.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz852.txt
 
@@ -1576,17 +1576,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz852.txt
 centroid = (0.6091461, -1.5298579)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz001.txt
 description = Lauderdale County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz001.txt
 station = ('kmsl', 0.0027567)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz001.txt
 
@@ -1594,17 +1594,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz001.txt
 centroid = (0.6056380, -1.5324846)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz002.txt
 description = Colbert County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz002.txt
 station = ('kmsl', 0.0030636)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz002.txt
 
@@ -1612,17 +1612,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz002.txt
 centroid = (0.6011211, -1.5331635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz003.txt
 description = Franklin County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz003.txt
 station = ('k1m4', 0.0044997)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz003.txt
 
@@ -1630,17 +1630,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz003.txt
 centroid = (0.6025226, -1.5238644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz004.txt
 description = Lawrence County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz004.txt
 station = ('kmsl', 0.0057497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz004.txt
 
@@ -1648,17 +1648,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz004.txt
 centroid = (0.6075509, -1.5181101)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz005.txt
 description = Limestone County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz005.txt
 station = ('kdcu', 0.0028301)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz005.txt
 
@@ -1666,17 +1666,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz005.txt
 centroid = (0.6067306, -1.5105860)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz006.txt
 description = Madison County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz006.txt
 station = ('kmdq', 0.0017184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz006.txt
 
@@ -1684,17 +1684,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz006.txt
 centroid = (0.6013270, -1.5158691)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz007.txt
 description = Morgan County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz007.txt
 station = ('kcmd', 0.0032262)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz007.txt
 
@@ -1702,17 +1702,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz007.txt
 centroid = (0.5998156, -1.5063343)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz008.txt
 description = Marshall County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz008.txt
 station = ('k8a0', 0.0025187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz008.txt
 
@@ -1720,17 +1720,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz008.txt
 centroid = (0.6070150, -1.5009709)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz009.txt
 description = Jackson County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz009.txt
 station = ('k4a6', 0.0015858)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz009.txt
 
@@ -1738,17 +1738,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz009.txt
 centroid = (0.6014370, -1.4975641)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz010.txt
 description = DefireKalb, DeKalb County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz010.txt
 station = ('k4a9', 0.0012143)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz010.txt
 
@@ -1756,17 +1756,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz010.txt
 centroid = (0.5957961, -1.5339193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz011.txt
 description = Marion County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz011.txt
 station = ('k1m4', 0.0048402)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz011.txt
 
@@ -1774,17 +1774,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz011.txt
 centroid = (0.5895583, -1.5375810)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz012.txt
 description = Lamar County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz012.txt
 station = ('kcbm', 0.0056003)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz012.txt
 
@@ -1792,17 +1792,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz012.txt
 centroid = (0.5885460, -1.5313327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz013.txt
 description = Fayette County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz013.txt
 station = ('kjfx', 0.0069201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz013.txt
 
@@ -1810,17 +1810,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz013.txt
 centroid = (0.5960160, -1.5249587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz014.txt
 description = Winston County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz014.txt
 station = ('k1m4', 0.0039909)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz014.txt
 
@@ -1828,17 +1828,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz014.txt
 centroid = (0.5899806, -1.5236253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz015.txt
 description = Walker County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz015.txt
 station = ('kjfx', 0.0017382)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz015.txt
 
@@ -1846,17 +1846,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz015.txt
 centroid = (0.5957158, -1.5161256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz016.txt
 description = Cullman County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz016.txt
 station = ('kcmd', 0.0023899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz016.txt
 
@@ -1864,17 +1864,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz016.txt
 centroid = (0.5930786, -1.5108862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz017.txt
 description = Blount County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz017.txt
 station = ('k8a0', 0.0062485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz017.txt
 
@@ -1882,17 +1882,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz017.txt
 centroid = (0.5942026, -1.5015905)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz018.txt
 description = Etowah County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz018.txt
 station = ('kgad', 0.0015416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz018.txt
 
@@ -1900,17 +1900,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz018.txt
 centroid = (0.5894221, -1.4979480)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz019.txt
 description = Calhoun County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz019.txt
 station = ('kanb', 0.0033007)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz019.txt
 
@@ -1918,17 +1918,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz019.txt
 centroid = (0.5964837, -1.4940682)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz020.txt
 description = Cherokee County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz020.txt
 station = ('k4a9', 0.0054638)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz020.txt
 
@@ -1936,17 +1936,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz020.txt
 centroid = (0.5877309, -1.4925846)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz021.txt
 description = Cleburne County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz021.txt
 station = ('kanb', 0.0050693)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz021.txt
 
@@ -1954,17 +1954,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz021.txt
 centroid = (0.5808613, -1.5374378)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz022.txt
 description = Pickens County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz022.txt
 station = ('ktcl', 0.0069805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz022.txt
 
@@ -1972,17 +1972,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz022.txt
 centroid = (0.5810114, -1.5275994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz023.txt
 description = Tuscaloosa County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz023.txt
 station = ('ktcl', 0.0018455)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz023.txt
 
@@ -1990,17 +1990,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz023.txt
 centroid = (0.5856330, -1.5166300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz024.txt
 description = Jefferson County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz024.txt
 station = ('kbhm', 0.0021416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz024.txt
 
@@ -2008,17 +2008,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz024.txt
 centroid = (0.5805716, -1.5125145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz025.txt
 description = Shelby County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz025.txt
 station = ('keet', 0.0022810)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz025.txt
 
@@ -2026,17 +2026,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz025.txt
 centroid = (0.5884500, -1.5064757)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz026.txt
 description = St. Clair County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz026.txt
 station = ('kplr', 0.0028996)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz026.txt
 
@@ -2044,17 +2044,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz026.txt
 centroid = (0.5825909, -1.5038787)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz027.txt
 description = Talladega County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz027.txt
 station = ('kplr', 0.0033475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz027.txt
 
@@ -2062,17 +2062,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz027.txt
 centroid = (0.5806553, -1.4985484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz028.txt
 description = Clay County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz028.txt
 station = ('kanb', 0.0054865)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz028.txt
 
@@ -2080,17 +2080,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz028.txt
 centroid = (0.5810864, -1.4915427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz029.txt
 description = Randolph County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz029.txt
 station = ('kctj', 0.0073912)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz029.txt
 
@@ -2098,17 +2098,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz029.txt
 centroid = (0.5688203, -1.5393595)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz030.txt
 description = Sumter County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz030.txt
 station = ('kdya', 0.0042302)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz030.txt
 
@@ -2116,17 +2116,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz030.txt
 centroid = (0.5733948, -1.5350555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz031.txt
 description = Greene County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz031.txt
 station = ('kdya', 0.0067947)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz031.txt
 
@@ -2134,17 +2134,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz031.txt
 centroid = (0.5718170, -1.5294163)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz032.txt
 description = Hale County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz032.txt
 station = ('kdya', 0.0070742)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz032.txt
 
@@ -2152,17 +2152,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz032.txt
 centroid = (0.5696493, -1.5235712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz033.txt
 description = Perry County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz033.txt
 station = ('ksem', 0.0068041)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz033.txt
 
@@ -2170,17 +2170,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz033.txt
 centroid = (0.5759342, -1.5206425)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz034.txt
 description = Bibb County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz034.txt
 station = ('keet', 0.0059633)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz034.txt
 
@@ -2188,17 +2188,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz034.txt
 centroid = (0.5733040, -1.5135286)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz035.txt
 description = Chilton County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz035.txt
 station = ('keet', 0.0059301)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz035.txt
 
@@ -2206,17 +2206,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz035.txt
 centroid = (0.5748451, -1.5053046)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz036.txt
 description = Coosa County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz036.txt
 station = ('kalx', 0.0041894)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz036.txt
 
@@ -2224,17 +2224,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz036.txt
 centroid = (0.5735571, -1.4974489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz037.txt
 description = Tallapoosa County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz037.txt
 station = ('kalx', 0.0025887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz037.txt
 
@@ -2242,17 +2242,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz037.txt
 centroid = (0.5744647, -1.4903716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz038.txt
 description = Chambers County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz038.txt
 station = ('kauo', 0.0052317)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz038.txt
 
@@ -2260,17 +2260,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz038.txt
 centroid = (0.5628268, -1.5322158)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz039.txt
 description = Marengo County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz039.txt
 station = ('kdya', 0.0044864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz039.txt
 
@@ -2278,17 +2278,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz039.txt
 centroid = (0.5641916, -1.5202952)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz040.txt
 description = Dallas County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz040.txt
 station = ('ksem', 0.0018647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz040.txt
 
@@ -2296,17 +2296,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz040.txt
 centroid = (0.5678411, -1.5122021)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz041.txt
 description = Autauga County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz041.txt
 station = ('k1a9', 0.0025470)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz041.txt
 
@@ -2314,17 +2314,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz041.txt
 centroid = (0.5612054, -1.5123295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz042.txt
 description = Lowndes County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz042.txt
 station = ('kmgm', 0.0044795)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz042.txt
 
@@ -2332,17 +2332,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz042.txt
 centroid = (0.5689180, -1.5035872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz043.txt
 description = Elmore County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz043.txt
 station = ('kmxf', 0.0049096)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz043.txt
 
@@ -2350,17 +2350,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz043.txt
 centroid = (0.5623486, -1.5046065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz044.txt
 description = Montgomery County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz044.txt
 station = ('kmgm', 0.0031628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz044.txt
 
@@ -2368,17 +2368,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz044.txt
 centroid = (0.5652423, -1.4956180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz045.txt
 description = Macon County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz045.txt
 station = ('kauo', 0.0055473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz045.txt
 
@@ -2386,17 +2386,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz045.txt
 centroid = (0.5602594, -1.4960282)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz046.txt
 description = Bullock County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz046.txt
 station = ('ktoi', 0.0060377)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz046.txt
 
@@ -2404,17 +2404,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz046.txt
 centroid = (0.5689983, -1.4897363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz047.txt
 description = Lee County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz047.txt
 station = ('kauo', 0.0011743)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz047.txt
 
@@ -2422,17 +2422,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz047.txt
 centroid = (0.5635389, -1.4867570)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz048.txt
 description = Russell County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz048.txt
 station = ('kcsg', 0.0052777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz048.txt
 
@@ -2440,17 +2440,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz048.txt
 centroid = (0.5550566, -1.4999517)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz049.txt
 description = Pike County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz049.txt
 station = ('kprn', 0.0003591)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz049.txt
 
@@ -2458,17 +2458,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz049.txt
 centroid = (0.5562295, -1.4903925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz050.txt
 description = Barbour County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz050.txt
 station = ('keuf', 0.0041255)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz050.txt
 
@@ -2476,17 +2476,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz050.txt
 centroid = (0.5588405, -1.5404765)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz051.txt
 description = Choctaw County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz051.txt
 station = ('kdya', 0.0089989)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz051.txt
 
@@ -2494,17 +2494,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz051.txt
 centroid = (0.5481678, -1.5395043)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz052.txt
 description = Washington County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz052.txt
 station = ('kmob', 0.0126487)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz052.txt
 
@@ -2512,17 +2512,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz052.txt
 centroid = (0.5527615, -1.5329384)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz053.txt
 description = Clarke County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz053.txt
 station = ('kgzh', 0.0124341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz053.txt
 
@@ -2530,17 +2530,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz053.txt
 centroid = (0.5583169, -1.5238156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz054.txt
 description = Wilcox County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz054.txt
 station = ('ksem', 0.0079177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz054.txt
 
@@ -2548,17 +2548,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz054.txt
 centroid = (0.5510109, -1.5248209)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz055.txt
 description = Monroe County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz055.txt
 station = ('kgzh', 0.0054136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz055.txt
 
@@ -2566,17 +2566,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz055.txt
 centroid = (0.5485448, -1.5183247)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz056.txt
 description = Conecuh County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz056.txt
 station = ('kgzh', 0.0008685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz056.txt
 
@@ -2584,17 +2584,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz056.txt
 centroid = (0.5541839, -1.5128566)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz057.txt
 description = Butler County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz057.txt
 station = ('kgzh', 0.0080342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz057.txt
 
@@ -2602,17 +2602,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz057.txt
 centroid = (0.5538192, -1.5064565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz058.txt
 description = Crenshaw County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz058.txt
 station = ('ktoi', 0.0049966)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz058.txt
 
@@ -2620,17 +2620,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz058.txt
 centroid = (0.5432547, -1.5212569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz059.txt
 description = Escambia County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz059.txt
 station = ('kgzh', 0.0053360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz059.txt
 
@@ -2638,17 +2638,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz059.txt
 centroid = (0.5453892, -1.5088581)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz060.txt
 description = Covington County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz060.txt
 station = ('k79j', 0.0013538)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz060.txt
 
@@ -2656,17 +2656,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz060.txt
 centroid = (0.5480788, -1.5007772)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz065.txt
 description = Coffee County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz065.txt
 station = ('kedn', 0.0022265)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz065.txt
 
@@ -2674,17 +2674,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz065.txt
 centroid = (0.5485884, -1.4941938)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz066.txt
 description = Dale County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz066.txt
 station = ('khey', 0.0016511)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz066.txt
 
@@ -2692,17 +2692,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz066.txt
 centroid = (0.5500353, -1.4877431)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz067.txt
 description = Henry County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz067.txt
 station = ('khdl', 0.0028266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz067.txt
 
@@ -2710,17 +2710,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz067.txt
 centroid = (0.5427101, -1.4981732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz068.txt
 description = Geneva County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz068.txt
 station = ('kedn', 0.0036866)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz068.txt
 
@@ -2728,17 +2728,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz068.txt
 centroid = (0.5437259, -1.4888095)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz069.txt
 description = Houston County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz069.txt
 station = ('kdhn', 0.0036035)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz069.txt
 
@@ -2746,17 +2746,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz069.txt
 centroid = (0.5397204, -1.5391186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz261.txt
 description = Mobile Inland, Mobile County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz261.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz261.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz261.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz261.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz261.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz261.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz261.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz261.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz261.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz261.txt
 station = ('kmob', 0.0042573)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz261.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz261.txt
 
@@ -2764,17 +2764,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz261.txt
 centroid = (0.5322207, -1.5301284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz262.txt
 description = Baldwin Inland, Baldwin County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz262.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz262.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz262.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz262.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz262.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz262.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz262.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz262.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz262.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz262.txt
 station = ('kcqf', 0.0031695)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz262.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz262.txt
 
@@ -2782,17 +2782,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz262.txt
 centroid = (0.5328194, -1.5400140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz263.txt
 description = Mobile Central, Mobile County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz263.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz263.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz263.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz263.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz263.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz263.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz263.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz263.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz263.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz263.txt
 station = ('kmob', 0.0027062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz263.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz263.txt
 
@@ -2800,17 +2800,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz263.txt
 centroid = (0.5401288, -1.5317271)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz264.txt
 description = Baldwin Central, Baldwin County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz264.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz264.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz264.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz264.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz264.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz264.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz264.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz264.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz264.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz264.txt
 station = ('kbfm', 0.0071361)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz264.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz264.txt
 
@@ -2818,17 +2818,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz264.txt
 centroid = (0.5328194, -1.5400140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz265.txt
 description = Mobile Coastal, Mobile County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz265.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz265.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz265.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz265.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz265.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz265.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz265.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz265.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz265.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz265.txt
 station = ('kmob', 0.0027062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz265.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz265.txt
 
@@ -2836,17 +2836,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz265.txt
 centroid = (0.5322207, -1.5301284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/al/alz266.txt
 description = Baldwin Coastal, Baldwin County, AL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alz266.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alz266.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/al/alc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/al/alc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/al/alz266.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/al/alz266.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alz266.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alz266.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alz266.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/al/alc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/al/alc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/al/alc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/al/alz266.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/al/alz266.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz266.txt
 station = ('kcqf', 0.0031695)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz266.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz266.txt
 
@@ -2854,17 +2854,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz266.txt
 centroid = (0.6342387, -1.6451002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz001.txt
 description = Benton County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz001.txt
 station = ('kvbt', 0.0006015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz001.txt
 
@@ -2872,17 +2872,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz001.txt
 centroid = (0.6342701, -1.6325496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz002.txt
 description = Carroll County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz002.txt
 station = ('kbbg', 0.0057966)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz002.txt
 
@@ -2890,17 +2890,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz002.txt
 centroid = (0.6330030, -1.6176445)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz004.txt
 description = Marion County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz004.txt
 station = ('kflp', 0.0015225)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz004.txt
 
@@ -2908,17 +2908,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz004.txt
 centroid = (0.6333311, -1.6115847)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz005.txt
 description = Baxter County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz005.txt
 station = ('kbpk', 0.0022908)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz005.txt
 
@@ -2926,17 +2926,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz005.txt
 centroid = (0.6349805, -1.6025316)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz006.txt
 description = Fulton County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz006.txt
 station = ('k42a', 0.0054253)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz006.txt
 
@@ -2944,17 +2944,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz006.txt
 centroid = (0.6311303, -1.5966255)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz007.txt
 description = Sharp County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz007.txt
 station = ('k42a', 0.0051819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz007.txt
 
@@ -2962,17 +2962,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz007.txt
 centroid = (0.6342788, -1.5887348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz008.txt
 description = Randolph County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz008.txt
 station = ('karg', 0.0039557)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz008.txt
 
@@ -2980,17 +2980,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz008.txt
 centroid = (0.6347501, -1.5780796)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz009.txt
 description = Clay County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz009.txt
 station = ('ktkx', 0.0059053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz009.txt
 
@@ -2998,17 +2998,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz009.txt
 centroid = (0.6279695, -1.6443567)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz010.txt
 description = Washington County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz010.txt
 station = ('kfyv', 0.0007629)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz010.txt
 
@@ -3016,17 +3016,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz010.txt
 centroid = (0.6285105, -1.6358029)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz011.txt
 description = Madison County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz011.txt
 station = ('kasg', 0.0062943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz011.txt
 
@@ -3034,17 +3034,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz011.txt
 centroid = (0.6258733, -1.6084378)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz014.txt
 description = Stone County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz014.txt
 station = ('k42a', 0.0059042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz014.txt
 
@@ -3052,17 +3052,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz014.txt
 centroid = (0.6299748, -1.6041915)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz015.txt
 description = Izard County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz015.txt
 station = ('k42a', 0.0012468)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz015.txt
 
@@ -3070,17 +3070,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz015.txt
 centroid = (0.6238069, -1.5981945)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz016.txt
 description = Independence County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz016.txt
 station = ('kbvx', 0.0011451)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz016.txt
 
@@ -3088,17 +3088,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz016.txt
 centroid = (0.6290394, -1.5901189)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz017.txt
 description = Lawrence County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz017.txt
 station = ('karg', 0.0031296)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz017.txt
 
@@ -3106,17 +3106,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz017.txt
 centroid = (0.6303728, -1.5805545)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz018.txt
 description = Greene County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz018.txt
 station = ('karg', 0.0050482)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz018.txt
 
@@ -3124,17 +3124,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz018.txt
 centroid = (0.6211435, -1.6448506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz019.txt
 description = Crawford County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz019.txt
 station = ('kfsm', 0.0047944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz019.txt
 
@@ -3142,17 +3142,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz019.txt
 centroid = (0.6198066, -1.6387001)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz020.txt
 description = Franklin County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz020.txt
 station = ('kfsm', 0.0074567)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz020.txt
 
@@ -3160,17 +3160,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz020.txt
 centroid = (0.6202569, -1.6061689)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz024.txt
 description = Cleburne County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz024.txt
 station = ('kbvx', 0.0063375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz024.txt
 
@@ -3178,17 +3178,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz024.txt
 centroid = (0.6213267, -1.5919951)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz025.txt
 description = Jackson County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz025.txt
 station = ('km19', 0.0008605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz025.txt
 
@@ -3196,17 +3196,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz025.txt
 centroid = (0.6253654, -1.5818408)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz026.txt
 description = Craighead County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz026.txt
 station = ('kjbr', 0.0002474)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz026.txt
 
@@ -3214,17 +3214,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz026.txt
 centroid = (0.6208834, -1.5823661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz027.txt
 description = Poinsett County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz027.txt
 station = ('kjbr', 0.0045299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz027.txt
 
@@ -3232,17 +3232,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz027.txt
 centroid = (0.6241978, -1.5717388)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz028.txt
 description = Mississippi County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz028.txt
 station = ('khka', 0.0043000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz028.txt
 
@@ -3250,17 +3250,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz028.txt
 centroid = (0.6143437, -1.6453917)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz029.txt
 description = Sebastian County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz029.txt
 station = ('kfsm', 0.0026863)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz029.txt
 
@@ -3268,17 +3268,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz029.txt
 centroid = (0.6154415, -1.6179447)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz031.txt
 description = Conway County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz031.txt
 station = ('kcxw', 0.0047164)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz031.txt
 
@@ -3286,17 +3286,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz031.txt
 centroid = (0.6134309, -1.6114992)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz032.txt
 description = Faulkner County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz032.txt
 station = ('kcxw', 0.0038816)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz032.txt
 
@@ -3304,17 +3304,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz032.txt
 centroid = (0.6153385, -1.6012645)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz033.txt
 description = White County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz033.txt
 station = ('ksrc', 0.0007835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz033.txt
 
@@ -3322,17 +3322,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz033.txt
 centroid = (0.6141168, -1.5924925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz034.txt
 description = Woodruff County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz034.txt
 station = ('kdrp', 0.0060563)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz034.txt
 
@@ -3340,17 +3340,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz034.txt
 centroid = (0.6160279, -1.5842581)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz035.txt
 description = Cross County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz035.txt
 station = ('kdrp', 0.0031667)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz035.txt
 
@@ -3358,17 +3358,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz035.txt
 centroid = (0.6144938, -1.5761876)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz036.txt
 description = Crittenden County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz036.txt
 station = ('kawm', 0.0016900)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz036.txt
 
@@ -3376,17 +3376,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz036.txt
 centroid = (0.6099472, -1.6219607)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz039.txt
 description = Perry County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz039.txt
 station = ('kcxw', 0.0055290)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz039.txt
 
@@ -3394,17 +3394,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz039.txt
 centroid = (0.6034773, -1.6257812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz042.txt
 description = Garland County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz042.txt
 station = ('khot', 0.0017834)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz042.txt
 
@@ -3412,17 +3412,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz042.txt
 centroid = (0.6046972, -1.6175118)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz043.txt
 description = Saline County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz043.txt
 station = ('ksuz', 0.0029963)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz043.txt
 
@@ -3430,17 +3430,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz043.txt
 centroid = (0.6068492, -1.6111448)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz044.txt
 description = Pulaski County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz044.txt
 station = ('klit', 0.0012936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz044.txt
 
@@ -3448,17 +3448,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz044.txt
 centroid = (0.6065752, -1.6037604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz045.txt
 description = Lonoke County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz045.txt
 station = ('klrf', 0.0046960)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz045.txt
 
@@ -3466,17 +3466,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz045.txt
 centroid = (0.6078929, -1.5978978)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz046.txt
 description = Prairie County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz046.txt
 station = ('ksgt', 0.0040140)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz046.txt
 
@@ -3484,17 +3484,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz046.txt
 centroid = (0.6052418, -1.5918066)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz047.txt
 description = Monroe County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz047.txt
 station = ('ksgt', 0.0053847)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz047.txt
 
@@ -3502,17 +3502,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz047.txt
 centroid = (0.6112492, -1.5838479)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz048.txt
 description = St. Francis County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz048.txt
 station = ('kdrp', 0.0020476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz048.txt
 
@@ -3520,17 +3520,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz048.txt
 centroid = (0.6070360, -1.5844448)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz049.txt
 description = Lee County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz049.txt
 station = ('kdrp', 0.0059587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz049.txt
 
@@ -3538,17 +3538,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz049.txt
 centroid = (0.5933648, -1.6448192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz050.txt
 description = Sevier County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz050.txt
 station = ('kdeq', 0.0024744)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz050.txt
 
@@ -3556,17 +3556,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz050.txt
 centroid = (0.5949601, -1.6404943)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz051.txt
 description = Howard County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz051.txt
 station = ('kdeq', 0.0059171)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz051.txt
 
@@ -3574,17 +3574,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz051.txt
 centroid = (0.5962673, -1.6346125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz052.txt
 description = Pike County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz052.txt
 station = ('kmwt', 0.0068256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz052.txt
 
@@ -3592,17 +3592,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz052.txt
 centroid = (0.5943021, -1.6262350)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz053.txt
 description = Clark County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz053.txt
 station = ('kadf', 0.0018078)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz053.txt
 
@@ -3610,17 +3610,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz053.txt
 centroid = (0.5989569, -1.6222137)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz054.txt
 description = Hot Spring County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz054.txt
 station = ('khot', 0.0036435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz054.txt
 
@@ -3628,17 +3628,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz054.txt
 centroid = (0.5984734, -1.6130961)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz055.txt
 description = Grant County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz055.txt
 station = ('ksuz', 0.0053076)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz055.txt
 
@@ -3646,17 +3646,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz055.txt
 centroid = (0.5981034, -1.6045074)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz056.txt
 description = Jefferson County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz056.txt
 station = ('kpbf', 0.0014919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz056.txt
 
@@ -3664,17 +3664,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz056.txt
 centroid = (0.5984874, -1.5947929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz057.txt
 description = Arkansas County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz057.txt
 station = ('ksgt', 0.0060614)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz057.txt
 
@@ -3682,17 +3682,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz057.txt
 centroid = (0.6008872, -1.5855967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz058.txt
 description = Phillips County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz058.txt
 station = ('kckm', 0.0053319)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz058.txt
 
@@ -3700,17 +3700,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz058.txt
 centroid = (0.5881847, -1.6446988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz059.txt
 description = Little River County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz059.txt
 station = ('ktxk', 0.0056950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz059.txt
 
@@ -3718,17 +3718,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz059.txt
 centroid = (0.5887938, -1.6348220)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz060.txt
 description = Hempstead County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz060.txt
 station = ('ktxk', 0.0067658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz060.txt
 
@@ -3736,17 +3736,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz060.txt
 centroid = (0.5875494, -1.6285179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz061.txt
 description = Nevada County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz061.txt
 station = ('kago', 0.0077239)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz061.txt
 
@@ -3754,17 +3754,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz061.txt
 centroid = (0.5928849, -1.6171261)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz062.txt
 description = Dallas County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz062.txt
 station = ('kadf', 0.0063709)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz062.txt
 
@@ -3772,17 +3772,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz062.txt
 centroid = (0.5916387, -1.6089353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz063.txt
 description = Cleveland County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz063.txt
 station = ('kpbf', 0.0061644)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz063.txt
 
@@ -3790,17 +3790,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz063.txt
 centroid = (0.5926702, -1.6010481)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz064.txt
 description = Lincoln County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz064.txt
 station = ('kpbf', 0.0048887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz064.txt
 
@@ -3808,17 +3808,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz064.txt
 centroid = (0.5905025, -1.5926828)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz065.txt
 description = Desha County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz065.txt
 station = ('kglh', 0.0072643)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz065.txt
 
@@ -3826,17 +3826,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz065.txt
 centroid = (0.5863137, -1.6210967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz066.txt
 description = Ouachita County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz066.txt
 station = ('kcdh', 0.0017254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz066.txt
 
@@ -3844,17 +3844,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz066.txt
 centroid = (0.5856976, -1.6144837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz067.txt
 description = Calhoun County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz067.txt
 station = ('kcdh', 0.0039665)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz067.txt
 
@@ -3862,17 +3862,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz067.txt
 centroid = (0.5840901, -1.6085338)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz068.txt
 description = Bradley County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz068.txt
 station = ('kllq', 0.0066700)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz068.txt
 
@@ -3880,17 +3880,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz068.txt
 centroid = (0.5862474, -1.6008160)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz069.txt
 description = Drew County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz069.txt
 station = ('kllq', 0.0008806)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz069.txt
 
@@ -3898,17 +3898,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz069.txt
 centroid = (0.5814111, -1.6387211)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz070.txt
 description = Miller County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz070.txt
 station = ('ktxk', 0.0027472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz070.txt
 
@@ -3916,17 +3916,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz070.txt
 centroid = (0.5801614, -1.6337556)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz071.txt
 description = Lafayette County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz071.txt
 station = ('kago', 0.0057022)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz071.txt
 
@@ -3934,17 +3934,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz071.txt
 centroid = (0.5796989, -1.6271233)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz072.txt
 description = Columbia County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz072.txt
 station = ('kago', 0.0002825)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz072.txt
 
@@ -3952,17 +3952,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz072.txt
 centroid = (0.5789484, -1.6161278)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz073.txt
 description = Union County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz073.txt
 station = ('keld', 0.0033003)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz073.txt
 
@@ -3970,17 +3970,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz073.txt
 centroid = (0.5792957, -1.6016520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz074.txt
 description = Ashley County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz074.txt
 station = ('kllq', 0.0077211)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz074.txt
 
@@ -3988,17 +3988,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz074.txt
 centroid = (0.5806222, -1.5933809)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz075.txt
 description = Chicot County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz075.txt
 station = ('kglh', 0.0058934)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz075.txt
 
@@ -4006,17 +4006,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz075.txt
 centroid = (0.6339333, -1.6244739)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz103.txt
 description = Boone County Except Southwest, Boone County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz103.txt
 station = ('khro', 0.0014216)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz103.txt
 
@@ -4024,17 +4024,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz103.txt
 centroid = (0.6264964, -1.6274131)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz112.txt
 description = Newton County Higher Elevations, Newton County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz112.txt
 station = ('khro', 0.0066104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz112.txt
 
@@ -4042,17 +4042,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz112.txt
 centroid = (0.6279258, -1.6182920)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz113.txt
 description = Searcy County Lower Elevations, Searcy County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz113.txt
 station = ('kflp', 0.0059551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz113.txt
 
@@ -4060,17 +4060,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz113.txt
 centroid = (0.6191311, -1.6314360)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz121.txt
 description = Southern Johnson County, Johnson County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz121.txt
 station = ('krue', 0.0066051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz121.txt
 
@@ -4078,17 +4078,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz121.txt
 centroid = (0.6168395, -1.6241964)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz122.txt
 description = Southern Pope County, Pope County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz122.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz122.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz122.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz122.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz122.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz122.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz122.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz122.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz122.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz122.txt
 station = ('krue', 0.0017106)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz122.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz122.txt
 
@@ -4096,17 +4096,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz122.txt
 centroid = (0.6197088, -1.6131153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz123.txt
 description = Southeast Van Buren County, Van Buren County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz123.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz123.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz123.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz123.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz123.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz123.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz123.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz123.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz123.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz123.txt
 station = ('kcca', 0.0016352)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz123.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz123.txt
 
@@ -4114,17 +4114,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz123.txt
 centroid = (0.6152687, -1.6361676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz130.txt
 description = Western and Northern Logan County, Logan County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz130.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz130.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz130.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz130.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz130.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz130.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz130.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz130.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz130.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz130.txt
 station = ('kfsm', 0.0089612)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz130.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz130.txt
 
@@ -4132,17 +4132,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz130.txt
 centroid = (0.6105947, -1.6416200)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz137.txt
 description = Northern Scott County, Scott County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz137.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz137.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz137.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz137.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz137.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz137.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz137.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz137.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz137.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz137.txt
 station = ('kfsm', 0.0075152)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz137.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz137.txt
 
@@ -4150,17 +4150,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz137.txt
 centroid = (0.6128601, -1.6319579)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz138.txt
 description = Northwest Yell County, Yell County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz138.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz138.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz138.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz138.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz138.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz138.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz138.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz138.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz138.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz138.txt
 station = ('krue', 0.0062347)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz138.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz138.txt
 
@@ -4168,17 +4168,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz138.txt
 centroid = (0.6006254, -1.6459729)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz140.txt
 description = Polk County Lower Elevations, Polk County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz140.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz140.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz140.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz140.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz140.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz140.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz140.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz140.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz140.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz140.txt
 station = ('kmez', 0.0027531)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz140.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz140.txt
 
@@ -4186,17 +4186,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz140.txt
 centroid = (0.6025592, -1.6337661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz141.txt
 description = Central and Eastern Montgomery County, Montgomery County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz141.txt
 station = ('kmwt', 0.0005737)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz141.txt
 
@@ -4204,17 +4204,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz141.txt
 centroid = (0.6315195, -1.6274131)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz203.txt
 description = Boone County Higher Elevations, Boone County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz203.txt
 station = ('khro', 0.0019647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz203.txt
 
@@ -4222,17 +4222,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz203.txt
 centroid = (0.6292837, -1.6244355)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz212.txt
 description = Newton County Lower Elevations, Newton County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz212.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz212.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz212.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz212.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz212.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz212.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz212.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz212.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz212.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz212.txt
 station = ('khro', 0.0038441)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz212.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz212.txt
 
@@ -4240,17 +4240,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz212.txt
 centroid = (0.6291790, -1.6208611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz213.txt
 description = Northwest Searcy County Higher Elevations, Searcy County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz213.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz213.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz213.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz213.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz213.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz213.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz213.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz213.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz213.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz213.txt
 station = ('khro', 0.0054889)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz213.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz213.txt
 
@@ -4258,17 +4258,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz213.txt
 centroid = (0.6223006, -1.6309596)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz221.txt
 description = Johnson County Higher Elevations, Johnson County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz221.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz221.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz221.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz221.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz221.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz221.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz221.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz221.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz221.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz221.txt
 station = ('krue', 0.0086236)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz221.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz221.txt
 
@@ -4276,17 +4276,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz221.txt
 centroid = (0.6214594, -1.6230794)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz222.txt
 description = Pope County Higher Elevations, Pope County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz222.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz222.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz222.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz222.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz222.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz222.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz222.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz222.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz222.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz222.txt
 station = ('krue', 0.0064053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz222.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz222.txt
 
@@ -4294,17 +4294,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz222.txt
 centroid = (0.6221872, -1.6161644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz223.txt
 description = Van Buren County Higher Elevations, Van Buren County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz223.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz223.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz223.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz223.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz223.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz223.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz223.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz223.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz223.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz223.txt
 station = ('kcca', 0.0022773)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz223.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz223.txt
 
@@ -4312,17 +4312,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz223.txt
 centroid = (0.6136333, -1.6348796)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz230.txt
 description = Southern and Eastern Logan County, Logan County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz230.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz230.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz230.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz230.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz230.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz230.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz230.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz230.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz230.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz230.txt
 station = ('krue', 0.0083077)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz230.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz230.txt
 
@@ -4330,17 +4330,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz230.txt
 centroid = (0.6077044, -1.6417457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz237.txt
 description = Central and Southern Scott County, Scott County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz237.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz237.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz237.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz237.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz237.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz237.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz237.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz237.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz237.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz237.txt
 station = ('kmez', 0.0051667)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz237.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz237.txt
 
@@ -4348,17 +4348,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz237.txt
 centroid = (0.6103329, -1.6298530)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz238.txt
 description = Yell Excluding Northwest, Yell County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz238.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz238.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz238.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz238.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz238.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz238.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz238.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz238.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz238.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz238.txt
 station = ('krue', 0.0063541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz238.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz238.txt
 
@@ -4366,17 +4366,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz238.txt
 centroid = (0.6046728, -1.6446744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz240.txt
 description = Northern Polk County Higher Elevations, Polk County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz240.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz240.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz240.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz240.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz240.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz240.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz240.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz240.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz240.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz240.txt
 station = ('kmez', 0.0017978)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz240.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz240.txt
 
@@ -4384,17 +4384,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz240.txt
 centroid = (0.6054792, -1.6349808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz241.txt
 description = Northern Montgomery County Higher Elevations, Montgomery County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz241.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz241.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz241.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz241.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz241.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz241.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz241.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz241.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz241.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz241.txt
 station = ('kmwt', 0.0028142)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz241.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz241.txt
 
@@ -4402,17 +4402,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz241.txt
 centroid = (0.6260444, -1.6173565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz313.txt
 description = Eastern, Central, and Southern Searcy County Higher Elevations, Searcy County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz313.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz313.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz313.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz313.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz313.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz313.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz313.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz313.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz313.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz313.txt
 station = ('kcca', 0.0056474)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz313.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz313.txt
 
@@ -4420,17 +4420,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz313.txt
 centroid = (0.6012467, -1.6428330)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz340.txt
 description = Southeast Polk County Higher Elevations, Polk County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz340.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz340.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz340.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz340.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz340.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz340.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz340.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz340.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz340.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz340.txt
 station = ('kmez', 0.0019991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz340.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz340.txt
 
@@ -4438,17 +4438,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz340.txt
 centroid = (0.6007371, -1.6374976)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ar/arz341.txt
 description = Southwest Montgomery County Higher Elevations, Montgomery County, AR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arz341.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arz341.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ar/arc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ar/arc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ar/arz341.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ar/arz341.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arz341.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arz341.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arz341.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ar/arc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ar/arc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ar/arc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ar/arz341.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ar/arz341.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz341.txt
 station = ('kmwt', 0.0041148)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz341.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz341.txt
 
@@ -4456,17 +4456,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz341.txt
 centroid = (-0.2496781, -2.9795737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/as/asz001.txt
 description = Tutuila and Aunuu, Western County, AS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asc050.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asc050.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/as/asz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/as/asz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asc050.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asc050.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asc050.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/as/asz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/as/asz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz001.txt
 station = ('nstu', 0.0004858)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc050.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz001.txt
 
@@ -4474,17 +4474,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz001.txt
 centroid = (-0.2483080, -2.9584256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/as/asz002.txt
 description = Manua, Manu'a County, AS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asc020.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asc020.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/as/asz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/as/asz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asc020.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asc020.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asc020.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/as/asz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/as/asz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz002.txt
 station = ('nstu', 0.0205729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc020.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz002.txt
 
@@ -4492,17 +4492,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz002.txt
 centroid = (-0.1934593, -2.9853159)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/as/asz003.txt
 description = Swains Island County, AS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asc040.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asc040.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/as/asz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/as/asz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asc040.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asc040.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asc040.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/as/asz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/as/asz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz003.txt
 station = ('nsfa', 0.0503820)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc040.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz003.txt
 
@@ -4510,17 +4510,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz003.txt
 centroid = (-0.2538634, -2.9348759)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/as/asz004.txt
 description = Rose Atoll County, AS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/as/asc030.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/as/asc030.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/as/asz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/as/asz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/as/asc030.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/as/asc030.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/as/asc030.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/as/asz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/as/asz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz004.txt
 station = ('nstu', 0.0434379)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc030.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz004.txt
 
@@ -4528,17 +4528,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz004.txt
 centroid = (0.6386526, -1.9780113)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz001.txt
 description = Northwest Plateau, Mohave County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz001.txt
 station = ('kazc', 0.0077797)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz001.txt
 
@@ -4546,17 +4546,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz001.txt
 centroid = (0.6052139, -1.9957700)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz002.txt
 description = Lake Havasu and Fort Mohave County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz002.txt
 station = ('khii', 0.0018387)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz002.txt
 
@@ -4564,17 +4564,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz002.txt
 centroid = (0.6140749, -1.9870224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz003.txt
 description = Northwest Deserts, Mohave County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz003.txt
 station = ('kigm', 0.0016767)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz003.txt
 
@@ -4582,17 +4582,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz003.txt
 centroid = (0.6396876, -1.9582908)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz004.txt
 description = Kaibab Plateau, Coconino County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz004.txt
 station = ('kknb', 0.0077821)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz004.txt
 
@@ -4600,17 +4600,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz004.txt
 centroid = (0.6418920, -1.9489760)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz005.txt
 description = Marble and Glen Canyons, Coconino County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz005.txt
 station = ('kpga', 0.0040811)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz005.txt
 
@@ -4618,17 +4618,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz005.txt
 centroid = (0.6315299, -1.9603259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz006.txt
 description = Grand Canyon Country, Coconino County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz006.txt
 station = ('kgcn', 0.0047248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz006.txt
 
@@ -4636,17 +4636,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz006.txt
 centroid = (0.6236777, -1.9644885)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz007.txt
 description = Coconino Plateau, Coconino County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz007.txt
 station = ('kgcn', 0.0068805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz007.txt
 
@@ -4654,17 +4654,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz007.txt
 centroid = (0.6080046, -1.9662077)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz008.txt
 description = Yavapai County  Mountains, Yavapai County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz008.txt
 station = ('kprc', 0.0047194)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz008.txt
 
@@ -4672,17 +4672,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz008.txt
 centroid = (0.6353801, -1.9368111)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz009.txt
 description = Northeast Plateaus and Mesas Hwy 264 Northward, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz009.txt
 station = ('kpga', 0.0114063)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz009.txt
 
@@ -4690,17 +4690,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz009.txt
 centroid = (0.6377503, -1.9147449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz010.txt
 description = Chinle Valley, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz010.txt
 station = ('krqe', 0.0179722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz010.txt
 
@@ -4708,17 +4708,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz010.txt
 centroid = (0.6260374, -1.9064999)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz011.txt
 description = Chuska Mountains and Defiance Plateau, Apache County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz011.txt
 station = ('krqe', 0.0045048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz011.txt
 
@@ -4726,17 +4726,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz011.txt
 centroid = (0.6192219, -1.9405897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz012.txt
 description = Little Colorado River Valley in Coconino County, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz012.txt
 station = ('kflg', 0.0091057)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz012.txt
 
@@ -4744,17 +4744,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz012.txt
 centroid = (0.6081425, -1.9253216)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz013.txt
 description = Little Colorado River Valley in Navajo County, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz013.txt
 station = ('kinw', 0.0066565)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz013.txt
 
@@ -4762,17 +4762,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz013.txt
 centroid = (0.6034790, -1.9097358)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz014.txt
 description = Little Colorado River Valley in Apache County, Apache County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz014.txt
 station = ('kjtc', 0.0079374)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz014.txt
 
@@ -4780,17 +4780,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz014.txt
 centroid = (0.6148725, -1.9507353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz015.txt
 description = Western Mogollon Rim, Coconino County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz015.txt
 station = ('kflg', 0.0022248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz015.txt
 
@@ -4798,17 +4798,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz015.txt
 centroid = (0.6011228, -1.9340377)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz016.txt
 description = Eastern Mogollon Rim, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz016.txt
 station = ('kpan', 0.0082491)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz016.txt
 
@@ -4816,17 +4816,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz016.txt
 centroid = (0.5921413, -1.9137239)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz017.txt
 description = White Mountains, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz017.txt
 station = ('kjtc', 0.0060476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz017.txt
 
@@ -4834,17 +4834,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz017.txt
 centroid = (0.5941118, -1.9359628)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz018.txt
 description = Northern Gila County, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz018.txt
 station = ('kpan', 0.0071060)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz018.txt
 
@@ -4852,17 +4852,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz018.txt
 centroid = (0.6248471, -1.9952499)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz036.txt
 description = Lake Mead National Recreation Area, Mohave County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz036.txt
 station = ('kbvu', 0.0080431)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz036.txt
 
@@ -4870,17 +4870,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz036.txt
 centroid = (0.6009204, -1.9637153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz037.txt
 description = Yavapai County Valleys and Basins, Yavapai County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz037.txt
 station = ('kprc', 0.0040766)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz037.txt
 
@@ -4888,17 +4888,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz037.txt
 centroid = (0.6093241, -1.9526674)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz038.txt
 description = Oak Creek and Sycamore Canyons, Yavapai County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz038.txt
 station = ('ksez', 0.0017491)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz038.txt
 
@@ -4906,17 +4906,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz038.txt
 centroid = (0.6345144, -1.9241033)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz039.txt
 description = Black Mesa Area, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz039.txt
 station = ('kpga', 0.0196868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz039.txt
 
@@ -4924,17 +4924,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz039.txt
 centroid = (0.6193982, -1.9230474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz040.txt
 description = Northeast Plateaus and Mesas South of Hwy 264, Navajo County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz040.txt
 station = ('kinw', 0.0110077)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz040.txt
 
@@ -4942,17 +4942,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz040.txt
 centroid = (0.5622875, -1.9718136)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz501.txt
 description = Western Pima County Including Ajo/Organ Pipe Cactus National Monument, Pima County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz501.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz501.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz501.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz501.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz501.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz501.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz501.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz501.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz501.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz501.txt
 station = ('kgxf', 0.0123012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz501.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz501.txt
 
@@ -4960,17 +4960,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz501.txt
 centroid = (0.5610082, -1.9558858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz502.txt
 description = Tohono O'odham Nation including Sells, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz502.txt
 station = ('kmzj', 0.0126054)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz502.txt
 
@@ -4978,17 +4978,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz502.txt
 centroid = (0.5518853, -1.9401604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz503.txt
 description = Upper Santa Cruz River and Altar Valleys including Nogales, Santa Cruz County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz503.txt
 station = ('kols', 0.0058624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz503.txt
 
@@ -4996,17 +4996,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz503.txt
 centroid = (0.5615789, -1.9383016)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz504.txt
 description = Tucson Metro Area including Tucson/Green Valley/Marana/Vail, Pima County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz504.txt
 station = ('kryn', 0.0018482)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz504.txt
 
@@ -5014,17 +5014,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz504.txt
 centroid = (0.5715116, -1.9432374)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz505.txt
 description = South Central Pinal County including Eloy/Picacho Peak State Park, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz505.txt
 station = ('kp08', 0.0035682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz505.txt
 
@@ -5032,17 +5032,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz505.txt
 centroid = (0.5729131, -1.9329836)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz506.txt
 description = Southeast Pinal County including Kearny/Mammoth/Oracle, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz506.txt
 station = ('kavq', 0.0099716)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz506.txt
 
@@ -5050,17 +5050,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz506.txt
 centroid = (0.5573377, -1.9252256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz507.txt
 description = Upper San Pedro River Valley including Sierra Vista/Benson, Santa Cruz County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz507.txt
 station = ('kalk', 0.0059897)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz507.txt
 
@@ -5068,17 +5068,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz507.txt
 centroid = (0.5570166, -1.9119244)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz508.txt
 description = Eastern Cochise County Below 5000 Feet including Douglas/Willcox, Cochise County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz508.txt
 station = ('kdug', 0.0078619)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz508.txt
 
@@ -5086,17 +5086,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz508.txt
 centroid = (0.5736653, -1.9153994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz509.txt
 description = Upper Gila River and Aravaipa Valleys including Clifton/Safford, Greenlee County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz509.txt
 station = ('ksad', 0.0016589)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz509.txt
 
@@ -5104,17 +5104,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz509.txt
 centroid = (0.5827078, -1.9109278)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz510.txt
 description = White Mountains of Graham and Greenlee Counties including Hannagan Meadow, Greenlee County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz510.txt
 station = ('ksad', 0.0096047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz510.txt
 
@@ -5122,17 +5122,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz510.txt
 centroid = (0.5698936, -1.9218745)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz511.txt
 description = Galiuro and Pinaleno Mountains including Mount Graham, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz511.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz511.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz511.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz511.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz511.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz511.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz511.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz511.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz511.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz511.txt
 station = ('ksad', 0.0078697)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz511.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz511.txt
 
@@ -5140,17 +5140,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz511.txt
 centroid = (0.5560898, -1.9086223)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz512.txt
 description = Chiricahua Mountains including Chiricahua National Monument, Cochise County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz512.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz512.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz512.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz512.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz512.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz512.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz512.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz512.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz512.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz512.txt
 station = ('kdug', 0.0077878)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz512.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz512.txt
 
@@ -5158,17 +5158,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz512.txt
 centroid = (0.5515991, -1.9265520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz513.txt
 description = Dragoon/Mule/Huachuca and Santa Rita Mountains including Bisbee/Canelo Hills/Madera Canyon, Santa Cruz County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz513.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz513.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz513.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz513.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz513.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz513.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz513.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz513.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz513.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz513.txt
 station = ('kalk', 0.0006663)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz513.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz513.txt
 
@@ -5176,17 +5176,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz513.txt
 centroid = (0.5643766, -1.9317444)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz514.txt
 description = Santa Catalina and Rincon Mountains including Mount Lemmon/Summerhaven, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz514.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz514.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz514.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz514.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz514.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz514.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz514.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz514.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz514.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz514.txt
 station = ('kdma', 0.0042087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz514.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz514.txt
 
@@ -5194,17 +5194,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz514.txt
 centroid = (0.5553393, -1.9476670)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz515.txt
 description = Baboquivari Mountains including Kitt Peak, Pima County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz515.txt
 station = ('kryn', 0.0083792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz515.txt
 
@@ -5212,17 +5212,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz515.txt
 centroid = (0.5881550, -1.9976480)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz530.txt
 description = Parker Valley, La Paz County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz530.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz530.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc012.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc012.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz530.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz530.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz530.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz530.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz530.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc012.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc012.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc012.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz530.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz530.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz530.txt
 station = ('kblh', 0.0040382)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc012.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz530.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz530.txt
 
@@ -5230,17 +5230,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz530.txt
 centroid = (0.5797495, -1.9901640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz531.txt
 description = Kofa, Yuma County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz531.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz531.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz531.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz531.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz531.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz531.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz531.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz531.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz531.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz531.txt
 station = ('klgf', 0.0082471)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz531.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz531.txt
 
@@ -5248,17 +5248,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz531.txt
 centroid = (0.5699268, -1.9986010)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz532.txt
 description = Yuma County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz532.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz532.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz532.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz532.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz532.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz532.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz532.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz532.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz532.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz532.txt
 station = ('knyl', 0.0013042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz532.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz532.txt
 
@@ -5266,17 +5266,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz532.txt
 centroid = (0.5901220, -1.9864151)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz533.txt
 description = Central La Paz County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz533.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz533.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc012.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc012.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz533.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz533.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz533.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz533.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz533.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc012.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc012.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc012.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz533.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz533.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz533.txt
 station = ('kblh', 0.0135501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc012.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz533.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz533.txt
 
@@ -5284,17 +5284,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz533.txt
 centroid = (0.5910767, -1.9718468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz534.txt
 description = Aguila Valley, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz534.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz534.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz534.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz534.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz534.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz534.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz534.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz534.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz534.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz534.txt
 station = ('kbxk', 0.0088329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz534.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz534.txt
 
@@ -5302,17 +5302,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz534.txt
 centroid = (0.5652406, -1.9854394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz535.txt
 description = Southeast Yuma County, Yuma County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz535.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz535.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz535.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz535.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz535.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz535.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz535.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz535.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz535.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz535.txt
 station = ('klgf', 0.0125257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz535.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz535.txt
 
@@ -5320,17 +5320,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz535.txt
 centroid = (0.5728520, -1.9862545)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz536.txt
 description = Gila River Valley, Yuma County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz536.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz536.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz536.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz536.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz536.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz536.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz536.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz536.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz536.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz536.txt
 station = ('klgf', 0.0087210)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz536.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz536.txt
 
@@ -5338,17 +5338,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz536.txt
 centroid = (0.5889107, -1.9630940)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz537.txt
 description = Northwest Valley, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz537.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz537.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz537.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz537.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz537.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz537.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz537.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz537.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz537.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz537.txt
 station = ('kluf', 0.0038896)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz537.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz537.txt
 
@@ -5356,17 +5356,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz537.txt
 centroid = (0.5828894, -1.9717054)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz538.txt
 description = Tonopah Desert, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz538.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz538.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz538.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz538.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz538.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz538.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz538.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz538.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz538.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz538.txt
 station = ('kbxk', 0.0041623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz538.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz538.txt
 
@@ -5374,17 +5374,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz538.txt
 centroid = (0.5734140, -1.9732099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz539.txt
 description = Gila Bend, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz539.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz539.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz539.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz539.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz539.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz539.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz539.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz539.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz539.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz539.txt
 station = ('kgxf', 0.0049683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz539.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz539.txt
 
@@ -5392,17 +5392,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz539.txt
 centroid = (0.5827864, -1.9617571)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz540.txt
 description = Buckeye/Avondale, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz540.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz540.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz540.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz540.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz540.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz540.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz540.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz540.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz540.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz540.txt
 station = ('kgyr', 0.0005093)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz540.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz540.txt
 
@@ -5410,17 +5410,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz540.txt
 centroid = (0.5900714, -1.9549939)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz541.txt
 description = Cave Creek/New River, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz541.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz541.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz541.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz541.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz541.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz541.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz541.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz541.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz541.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz541.txt
 station = ('kdvt', 0.0023214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz541.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz541.txt
 
@@ -5428,17 +5428,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz541.txt
 centroid = (0.5883889, -1.9570394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz542.txt
 description = Deer Valley, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz542.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz542.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz542.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz542.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz542.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz542.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz542.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz542.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz542.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz542.txt
 station = ('kdvt', 0.0010499)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz542.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz542.txt
 
@@ -5446,17 +5446,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz542.txt
 centroid = (0.5835177, -1.9557322)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz543.txt
 description = Central Phoenix, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz543.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz543.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz543.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz543.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz543.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz543.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz543.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz543.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz543.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz543.txt
 station = ('kphx', 0.0000624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz543.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz543.txt
 
@@ -5464,17 +5464,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz543.txt
 centroid = (0.5859350, -1.9574304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz544.txt
 description = North Phoenix/Glendale, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz544.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz544.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz544.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz544.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz544.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz544.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz544.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz544.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz544.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz544.txt
 station = ('kdvt', 0.0023149)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz544.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz544.txt
 
@@ -5482,17 +5482,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz544.txt
 centroid = (0.5921204, -1.9528262)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz545.txt
 description = New River Mesa, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz545.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz545.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz545.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz545.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz545.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz545.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz545.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz545.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz545.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz545.txt
 station = ('kdvt', 0.0049598)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz545.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz545.txt
 
@@ -5500,17 +5500,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz545.txt
 centroid = (0.5852979, -1.9528332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz546.txt
 description = Scottsdale/Paradise Valley, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz546.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz546.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz546.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz546.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz546.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz546.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz546.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz546.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz546.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz546.txt
 station = ('ksdl', 0.0014790)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz546.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz546.txt
 
@@ -5518,17 +5518,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz546.txt
 centroid = (0.5881969, -1.9462166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz547.txt
 description = Rio Verde/Salt River, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz547.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz547.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz547.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz547.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz547.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz547.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz547.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz547.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz547.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz547.txt
 station = ('kffz', 0.0052250)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz547.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz547.txt
 
@@ -5536,17 +5536,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz547.txt
 centroid = (0.5825298, -1.9515120)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz548.txt
 description = East Valley, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz548.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz548.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz548.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz548.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz548.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz548.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz548.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz548.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz548.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz548.txt
 station = ('kchd', 0.0018736)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz548.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz548.txt
 
@@ -5554,17 +5554,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz548.txt
 centroid = (0.5852944, -1.9488207)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz549.txt
 description = Fountain Hills/East Mesa, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz549.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz549.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz549.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz549.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz549.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz549.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz549.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz549.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz549.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz549.txt
 station = ('kffz', 0.0016070)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz549.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz549.txt
 
@@ -5572,17 +5572,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz549.txt
 centroid = (0.5808962, -1.9555524)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz550.txt
 description = South Mountain/Ahwatukee, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz550.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz550.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz550.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz550.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz550.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz550.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz550.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz550.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz550.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz550.txt
 station = ('kphx', 0.0026417)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz550.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz550.txt
 
@@ -5590,17 +5590,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz550.txt
 centroid = (0.5805244, -1.9501489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz551.txt
 description = Southeast Valley/Queen Creek, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz551.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz551.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz551.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz551.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz551.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz551.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz551.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz551.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz551.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz551.txt
 station = ('kchd', 0.0011142)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz551.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz551.txt
 
@@ -5608,17 +5608,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz551.txt
 centroid = (0.5806745, -1.9405967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz552.txt
 description = Superior, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz552.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz552.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz552.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz552.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz552.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz552.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz552.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz552.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz552.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz552.txt
 station = ('kiwa', 0.0067886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz552.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz552.txt
 
@@ -5626,17 +5626,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz552.txt
 centroid = (0.5763217, -1.9504246)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz553.txt
 description = Northwest Pinal County, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz553.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz553.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz553.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz553.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz553.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz553.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz553.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz553.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz553.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz553.txt
 station = ('kcgz', 0.0012565)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz553.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz553.txt
 
@@ -5644,17 +5644,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz553.txt
 centroid = (0.5736164, -1.9568684)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz554.txt
 description = West Pinal County, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz554.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz554.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz554.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz554.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz554.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz554.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz554.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz554.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz554.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz554.txt
 station = ('ka39', 0.0036738)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz554.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz554.txt
 
@@ -5662,17 +5662,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz554.txt
 centroid = (0.5804686, -1.9439948)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz555.txt
 description = Apache Junction/Gold Canyon, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz555.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz555.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz555.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz555.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz555.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz555.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz555.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz555.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz555.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz555.txt
 station = ('kiwa', 0.0040302)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz555.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz555.txt
 
@@ -5680,17 +5680,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz555.txt
 centroid = (0.5883138, -1.9395408)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz556.txt
 description = Tonto Basin, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz556.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz556.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz556.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz556.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz556.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz556.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz556.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz556.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz556.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz556.txt
 station = ('kffz', 0.0097629)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz556.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz556.txt
 
@@ -5698,17 +5698,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz556.txt
 centroid = (0.5903279, -1.9446563)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz557.txt
 description = Mazatzal Mountains, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz557.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz557.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz557.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz557.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz557.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz557.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz557.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz557.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz557.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz557.txt
 station = ('kpan', 0.0076575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz557.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz557.txt
 
@@ -5716,17 +5716,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz557.txt
 centroid = (0.5823099, -1.9367884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz558.txt
 description = Pinal/Superstition Mountains, Pinal County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz558.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz558.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz558.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz558.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz558.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz558.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz558.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz558.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz558.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz558.txt
 station = ('kp08', 0.0100217)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz558.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz558.txt
 
@@ -5734,17 +5734,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz558.txt
 centroid = (0.5725012, -1.9639073)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz559.txt
 description = Sonoran Desert Natl Monument, Maricopa County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz559.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz559.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz559.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz559.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz559.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz559.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz559.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz559.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz559.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz559.txt
 station = ('kgxf', 0.0032443)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz559.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz559.txt
 
@@ -5752,17 +5752,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz559.txt
 centroid = (0.5819207, -1.9291491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz560.txt
 description = San Carlos, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz560.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz560.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz560.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz560.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz560.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz560.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz560.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz560.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz560.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz560.txt
 station = ('kp08', 0.0148722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz560.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz560.txt
 
@@ -5770,17 +5770,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz560.txt
 centroid = (0.5777389, -1.9335700)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz561.txt
 description = Dripping Springs, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz561.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz561.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz561.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz561.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz561.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz561.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz561.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz561.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz561.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz561.txt
 station = ('kp08', 0.0098268)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz561.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz561.txt
 
@@ -5788,17 +5788,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz561.txt
 centroid = (0.5835404, -1.9341302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz562.txt
 description = Globe/Miami, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz562.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz562.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz562.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz562.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz562.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz562.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz562.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz562.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz562.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz562.txt
 station = ('kp08', 0.0124482)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz562.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz562.txt
 
@@ -5806,17 +5806,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz562.txt
 centroid = (0.5866174, -1.9277999)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/az/azz563.txt
 description = Southeast Gila County, Gila County, AZ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azz563.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azz563.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/az/azc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/az/azc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/az/azz563.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/az/azz563.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azz563.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azz563.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azz563.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/az/azc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/az/azc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/az/azc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/az/azz563.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/az/azz563.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz563.txt
 station = ('ksow', 0.0131467)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz563.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz563.txt
 
@@ -5824,17 +5824,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz563.txt
 centroid = (0.6589630, -2.1370213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz006.txt
 description = San Francisco County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz006.txt
 station = ('ksfo', 0.0026435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz006.txt
 
@@ -5842,17 +5842,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz006.txt
 centroid = (0.7143615, -2.1332234)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz013.txt
 description = Shasta Lake Area / Northern Shasta County, Shasta County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz013.txt
 station = ('kmhs', 0.0068578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz013.txt
 
@@ -5860,17 +5860,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz013.txt
 centroid = (0.7145779, -2.1203691)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz014.txt
 description = Burney Basin / Eastern Shasta County, Shasta County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz014.txt
 station = ('ko05', 0.0119741)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz014.txt
 
@@ -5878,17 +5878,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz014.txt
 centroid = (0.7019679, -2.1344487)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz015.txt
 description = Northern Sacramento Valley, Tehama County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz015.txt
 station = ('krbl', 0.0013574)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz015.txt
 
@@ -5896,17 +5896,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz015.txt
 centroid = (0.6872478, -2.1280101)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz016.txt
 description = Central Sacramento Valley, Yuba County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz016.txt
 station = ('kove', 0.0046946)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz016.txt
 
@@ -5914,17 +5914,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz016.txt
 centroid = (0.6741648, -2.1216659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz017.txt
 description = Southern Sacramento Valley, Yolo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz017.txt
 station = ('ksmf', 0.0013760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz017.txt
 
@@ -5932,17 +5932,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz017.txt
 centroid = (0.6657244, -2.1251530)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz018.txt
 description = Carquinez Strait and Delta, Solano County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz018.txt
 station = ('ksuu', 0.0033572)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz018.txt
 
@@ -5950,17 +5950,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz018.txt
 centroid = (0.6590032, -2.1125640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz019.txt
 description = Northern San Joaquin Valley, Tuolumne County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz019.txt
 station = ('kmod', 0.0027700)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz019.txt
 
@@ -5968,17 +5968,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz019.txt
 centroid = (0.6098564, -2.0898119)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz038.txt
 description = Cuyama Valley, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz038.txt
 station = ('kiza', 0.0075986)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz038.txt
 
@@ -5986,17 +5986,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz038.txt
 centroid = (0.5755799, -2.0461664)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz043.txt
 description = San Diego County Coastal Areas, San Diego County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz043.txt
 station = ('knkx', 0.0023258)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz043.txt
 
@@ -6004,17 +6004,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz043.txt
 centroid = (0.5907695, -2.0462450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz048.txt
 description = San Bernardino and Riverside County Valleys -The Inland Empire, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz048.txt
 station = ('kriv', 0.0009061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz048.txt
 
@@ -6022,17 +6022,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz048.txt
 centroid = (0.5760407, -2.0413441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz050.txt
 description = San Diego County Valleys, San Diego County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz050.txt
 station = ('krnm', 0.0008120)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz050.txt
 
@@ -6040,17 +6040,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz050.txt
 centroid = (0.5974332, -2.0437055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz055.txt
 description = San Bernardino County Mountains, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz055.txt
 station = ('ksbd', 0.0030216)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz055.txt
 
@@ -6058,17 +6058,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz055.txt
 centroid = (0.5874778, -2.0358114)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz056.txt
 description = Riverside County Mountains, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz056.txt
 station = ('kpsp', 0.0036719)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz056.txt
 
@@ -6076,17 +6076,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz056.txt
 centroid = (0.5868774, -2.0499765)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz057.txt
 description = Santa Ana Mountains and Foothills, San Diego County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz057.txt
 station = ('kajo', 0.0052060)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz057.txt
 
@@ -6094,17 +6094,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz057.txt
 centroid = (0.5772031, -2.0338741)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz058.txt
 description = San Diego County Mountains, San Diego County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz058.txt
 station = ('kl08', 0.0045030)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz058.txt
 
@@ -6112,17 +6112,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz058.txt
 centroid = (0.6028838, -2.0422848)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz060.txt
 description = Apple and Lucerne Valleys, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz060.txt
 station = ('kl35', 0.0053750)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz060.txt
 
@@ -6130,17 +6130,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz060.txt
 centroid = (0.5889160, -2.0298598)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz061.txt
 description = Coachella Valley, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz061.txt
 station = ('ktrm', 0.0028966)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz061.txt
 
@@ -6148,17 +6148,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz061.txt
 centroid = (0.5768505, -2.0290081)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz062.txt
 description = San Diego County Deserts, San Diego County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz062.txt
 station = ('kl08', 0.0037602)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz062.txt
 
@@ -6166,17 +6166,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz062.txt
 centroid = (0.6949465, -2.1425051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz063.txt
 description = Mountains Southwestern Shasta County to Western Colusa County, Tehama County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz063.txt
 station = ('krbl', 0.0089195)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz063.txt
 
@@ -6184,17 +6184,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz063.txt
 centroid = (0.5884988, -2.0112162)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz065.txt
 description = San Gorgonio Pass Near Banning, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz065.txt
 station = ('kblh', 0.0077248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz065.txt
 
@@ -6202,17 +6202,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz065.txt
 centroid = (0.7000812, -2.1250536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz066.txt
 description = Northeast Foothills/Sacramento Valley, Tehama County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz066.txt
 station = ('kcic', 0.0055819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz066.txt
 
@@ -6220,17 +6220,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz066.txt
 centroid = (0.6740322, -2.1078306)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz067.txt
 description = Motherlode, Yuba County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz067.txt
 station = ('kpvf', 0.0018469)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz067.txt
 
@@ -6238,17 +6238,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz067.txt
 centroid = (0.7015717, -2.1179588)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz068.txt
 description = Western Plumas County/Lassen Park, Tehama County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz068.txt
 station = ('ko05', 0.0020807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz068.txt
 
@@ -6256,17 +6256,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz068.txt
 centroid = (0.6768893, -2.1003694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz069.txt
 description = West Slope Northern Sierra Nevada, Yuba County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz069.txt
 station = ('kpvf', 0.0056831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz069.txt
 
@@ -6274,17 +6274,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz069.txt
 centroid = (0.7262594, -2.0958996)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz070.txt
 description = Surprise Valley California, Modoc County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz070.txt
 station = ('kaat', 0.0066632)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz070.txt
 
@@ -6292,17 +6292,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz070.txt
 centroid = (0.7062649, -2.1039438)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz071.txt
 description = Lassen-Eastern Plumas-Eastern Sierra Counties, Sierra County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz071.txt
 station = ('ksve', 0.0014660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz071.txt
 
@@ -6310,17 +6310,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz071.txt
 centroid = (0.6797726, -2.0938418)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz072.txt
 description = Greater Lake Tahoe Area, Placer County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz072.txt
 station = ('ktvl', 0.0011487)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz072.txt
 
@@ -6328,17 +6328,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz072.txt
 centroid = (0.6621605, -2.0749644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz073.txt
 description = Mono County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz073.txt
 station = ('kmmh', 0.0056737)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz073.txt
 
@@ -6346,17 +6346,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz073.txt
 centroid = (0.7252925, -2.1496191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz080.txt
 description = Western Siskiyou County, Siskiyou County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz080.txt
 station = ('ko86', 0.0117492)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz080.txt
 
@@ -6364,17 +6364,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz080.txt
 centroid = (0.7284341, -2.1391296)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz081.txt
 description = Central Siskiyou County, Siskiyou County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz081.txt
 station = ('ksiy', 0.0013636)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz081.txt
 
@@ -6382,17 +6382,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz081.txt
 centroid = (0.7203044, -2.1325236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz082.txt
 description = South Central Siskiyou County, Siskiyou County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz082.txt
 station = ('kmhs', 0.0019108)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz082.txt
 
@@ -6400,17 +6400,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz082.txt
 centroid = (0.7250534, -2.1274988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz083.txt
 description = North Central and Southeast Siskiyou County, Siskiyou County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz083.txt
 station = ('kmhs', 0.0067630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz083.txt
 
@@ -6418,17 +6418,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz083.txt
 centroid = (0.7306629, -2.1229679)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz084.txt
 description = Northeast Siskiyou and Northwest Modoc Counties, Siskiyou County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz084.txt
 station = ('klmt', 0.0050989)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz084.txt
 
@@ -6436,17 +6436,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz084.txt
 centroid = (0.7253780, -2.1076334)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz085.txt
 description = Modoc County, Modoc County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz085.txt
 station = ('kaat', 0.0028506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz085.txt
 
@@ -6454,17 +6454,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz085.txt
 centroid = (0.5826258, -2.0670475)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz087.txt
 description = Catalina Island, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz087.txt
 station = ('kavx', 0.0003950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz087.txt
 
@@ -6472,17 +6472,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz087.txt
 centroid = (0.6013253, -2.0692257)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz088.txt
 description = Santa Clarita Valley, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz088.txt
 station = ('kwhp', 0.0042165)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz088.txt
 
@@ -6490,17 +6490,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz088.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz101.txt
 description = Coastal Del Norte County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz101.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz101.txt
 
@@ -6508,17 +6508,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz101.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz102.txt
 description = Del Norte Interior, Del Norte County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz102.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz102.txt
 
@@ -6526,17 +6526,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz102.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz103.txt
 description = Northern Humboldt Coast, Humboldt County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz103.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz103.txt
 
@@ -6544,17 +6544,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz103.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz104.txt
 description = Southwestern Humboldt County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz104.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz104.txt
 
@@ -6562,17 +6562,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz104.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz105.txt
 description = Northern Humboldt Interior, Humboldt County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz105.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz105.txt
 
@@ -6580,17 +6580,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz105.txt
 centroid = (0.7160091, -2.1658768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz106.txt
 description = Southern Humboldt Interior, Humboldt County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz106.txt
 station = ('kacv', 0.0007173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz106.txt
 
@@ -6598,17 +6598,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz106.txt
 centroid = (0.7105026, -2.1486923)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz107.txt
 description = Northern Trinity County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz107.txt
 station = ('ko54', 0.0025853)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz107.txt
 
@@ -6616,17 +6616,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz107.txt
 centroid = (0.7105026, -2.1486923)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz108.txt
 description = Southern Trinity County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz108.txt
 station = ('ko54', 0.0025853)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz108.txt
 
@@ -6634,17 +6634,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz108.txt
 centroid = (0.6872723, -2.1594453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz109.txt
 description = Mendocino Coast, Mendocino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz109.txt
 station = ('kuki', 0.0083036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz109.txt
 
@@ -6652,17 +6652,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz109.txt
 centroid = (0.6917770, -2.1543838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz110.txt
 description = Northwestern Mendocino Interior, Mendocino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz110.txt
 station = ('kuki', 0.0093364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz110.txt
 
@@ -6670,17 +6670,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz110.txt
 centroid = (0.6939481, -2.1491915)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz111.txt
 description = Northeastern Mendocino Interior, Mendocino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz111.txt
 station = ('kuki', 0.0109729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz111.txt
 
@@ -6688,17 +6688,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz111.txt
 centroid = (0.6834029, -2.1553333)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz112.txt
 description = Southwestern Mendocino Interior, Mendocino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz112.txt
 station = ('kuki', 0.0039657)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz112.txt
 
@@ -6706,17 +6706,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz112.txt
 centroid = (0.6822562, -2.1501636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz113.txt
 description = Southeastern Mendocino Interior, Mendocino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz113.txt
 station = ('kuki', 0.0007520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz113.txt
 
@@ -6724,17 +6724,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz113.txt
 centroid = (0.6869948, -2.1443604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz114.txt
 description = Northern Lake County, Lake County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz114.txt
 station = ('kuki', 0.0060569)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz114.txt
 
@@ -6742,17 +6742,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz114.txt
 centroid = (0.6802927, -2.1415574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz115.txt
 description = Southern Lake County, Lake County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz115.txt
 station = ('ksts', 0.0084852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz115.txt
 
@@ -6760,17 +6760,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz115.txt
 centroid = (0.6398255, -2.1081291)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz300.txt
 description = West Side Mountains north of 198, Merced County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz300.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz300.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz300.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz300.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz300.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz300.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz300.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz300.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz300.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz300.txt
 station = ('kcvh', 0.0096207)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz300.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz300.txt
 
@@ -6778,17 +6778,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz300.txt
 centroid = (0.6442447, -2.1069824)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz301.txt
 description = Los Banos - Dos Palos, Merced County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz301.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz301.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz301.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz301.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz301.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz301.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz301.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz301.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz301.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz301.txt
 station = ('kmce', 0.0071674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz301.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz301.txt
 
@@ -6796,17 +6796,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz301.txt
 centroid = (0.6473479, -2.1023119)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz302.txt
 description = Merced - Madera - Mendota, Merced County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz302.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz302.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz302.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz302.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz302.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz302.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz302.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz302.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz302.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz302.txt
 station = ('kmce', 0.0034303)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz302.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz302.txt
 
@@ -6814,17 +6814,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz302.txt
 centroid = (0.6502695, -2.0977636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz303.txt
 description = Planada - Le Grand - Snelling, Merced County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz303.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz303.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz303.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz303.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz303.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz303.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz303.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz303.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz303.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz303.txt
 station = ('kmae', 0.0049050)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz303.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz303.txt
 
@@ -6832,17 +6832,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz303.txt
 centroid = (0.6295019, -2.0976746)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz304.txt
 description = Coalinga - Avenal, Kings County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz304.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz304.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz304.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz304.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz304.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz304.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz304.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz304.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz304.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz304.txt
 station = ('knlc', 0.0057188)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz304.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz304.txt
 
@@ -6850,17 +6850,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz304.txt
 centroid = (0.6333276, -2.0961998)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz305.txt
 description = West Side of Fresno and Kings Counties, Kings County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz305.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz305.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz305.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz305.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz305.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz305.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz305.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz305.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz305.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz305.txt
 station = ('knlc', 0.0023040)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz305.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz305.txt
 
@@ -6868,17 +6868,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz305.txt
 centroid = (0.6385619, -2.0925677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz306.txt
 description = Caruthers - San Joaquin - Selma, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz306.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz306.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz306.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz306.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz306.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz306.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz306.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz306.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz306.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz306.txt
 station = ('kfch', 0.0027828)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz306.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz306.txt
 
@@ -6886,17 +6886,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz306.txt
 centroid = (0.6421991, -2.0897560)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz307.txt
 description = Fresno-Clovis, Fresno County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz307.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz307.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz307.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz307.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz307.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz307.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz307.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz307.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz307.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz307.txt
 station = ('kfat', 0.0003220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz307.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz307.txt
 
@@ -6904,17 +6904,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz307.txt
 centroid = (0.6227981, -2.0950287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz308.txt
 description = West Side Mountains South of 198, Kings County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz308.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz308.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz308.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz308.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz308.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz308.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz308.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz308.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz308.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz308.txt
 station = ('kprb', 0.0084699)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz308.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz308.txt
 
@@ -6922,17 +6922,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz308.txt
 centroid = (0.6215083, -2.0875569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz309.txt
 description = Buttonwillow - Lost Hills - I5, Kings County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz309.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz309.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz309.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz309.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz309.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz309.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz309.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz309.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz309.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz309.txt
 station = ('kdlo', 0.0057718)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz309.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz309.txt
 
@@ -6940,17 +6940,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz309.txt
 centroid = (0.6243950, -2.0834030)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz310.txt
 description = Delano-Wasco-Shafter, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz310.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz310.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz310.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz310.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz310.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz310.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz310.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz310.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz310.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz310.txt
 station = ('kdlo', 0.0019559)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz310.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz310.txt
 
@@ -6958,17 +6958,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz310.txt
 centroid = (0.6322630, -2.0872078)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz311.txt
 description = Hanford - Corcoran - Lemoore, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz311.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz311.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz311.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz311.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz311.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz311.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz311.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz311.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz311.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz311.txt
 station = ('khjo', 0.0017148)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz311.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz311.txt
 
@@ -6976,17 +6976,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz311.txt
 centroid = (0.6346471, -2.0814884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz312.txt
 description = Visalia - Porterville - Reedley, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz312.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz312.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz312.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz312.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz312.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz312.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz312.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz312.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz312.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz312.txt
 station = ('kvis', 0.0021187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz312.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz312.txt
 
@@ -6994,17 +6994,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz312.txt
 centroid = (0.6144920, -2.0847940)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz313.txt
 description = Buena Vista, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz313.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz313.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz313.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz313.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz313.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz313.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz313.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz313.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz313.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz313.txt
 station = ('kbfl', 0.0069228)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz313.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz313.txt
 
@@ -7012,17 +7012,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz313.txt
 centroid = (0.6171694, -2.0773188)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz314.txt
 description = Bakersfield, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz314.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz314.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz314.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz314.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz314.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz314.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz314.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz314.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz314.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz314.txt
 station = ('kbfl', 0.0013222)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz314.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz314.txt
 
@@ -7030,17 +7030,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz314.txt
 centroid = (0.6244003, -2.0776242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz315.txt
 description = Southeast San Joaquin Valley, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz315.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz315.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz315.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz315.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz315.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz315.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz315.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz315.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz315.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz315.txt
 station = ('kdlo', 0.0028510)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz315.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz315.txt
 
@@ -7048,17 +7048,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz315.txt
 centroid = (0.6132773, -2.0767638)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz316.txt
 description = South End San Joaquin Valley, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz316.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz316.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz316.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz316.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz316.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz316.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz316.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz316.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz316.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz316.txt
 station = ('kbfl', 0.0052220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz316.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz316.txt
 
@@ -7066,17 +7066,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz316.txt
 centroid = (0.6518997, -2.0943340)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz317.txt
 description = Mariposa Madera Foothills, Merced County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz317.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz317.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz317.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz317.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz317.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz317.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz317.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz317.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz317.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz317.txt
 station = ('kmae', 0.0066328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz317.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz317.txt
 
@@ -7084,17 +7084,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz317.txt
 centroid = (0.6542437, -2.0910406)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz318.txt
 description = Mariposa-Madera Lower Sierra, Mariposa County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz318.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz318.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz318.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz318.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz318.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz318.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz318.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz318.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz318.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz318.txt
 station = ('kmae', 0.0097573)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz318.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz318.txt
 
@@ -7102,17 +7102,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz318.txt
 centroid = (0.6389127, -2.0804534)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz319.txt
 description = Fresno-Tulare Foothills, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz319.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz319.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz319.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz319.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz319.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz319.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz319.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz319.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz319.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz319.txt
 station = ('ko32', 0.0036349)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz319.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz319.txt
 
@@ -7120,17 +7120,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz319.txt
 centroid = (0.6429269, -2.0795755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz320.txt
 description = Fresno-Tulare Lower Sierra, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz320.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz320.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz320.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz320.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz320.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz320.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz320.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz320.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz320.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz320.txt
 station = ('ko32', 0.0051352)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz320.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz320.txt
 
@@ -7138,17 +7138,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz320.txt
 centroid = (0.6236882, -2.0748474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz321.txt
 description = South End Sierra Foothills, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz321.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz321.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz321.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz321.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz321.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz321.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz321.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz321.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz321.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz321.txt
 station = ('kbfl', 0.0057869)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz321.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz321.txt
 
@@ -7156,17 +7156,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz321.txt
 centroid = (0.6273342, -2.0726012)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz322.txt
 description = South End of the Lower Sierra, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz322.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz322.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz322.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz322.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz322.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz322.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz322.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz322.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz322.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz322.txt
 station = ('kptv', 0.0047210)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz322.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz322.txt
 
@@ -7174,17 +7174,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz322.txt
 centroid = (0.6606577, -2.0865935)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz323.txt
 description = Yosemite NP outside of the valley, Tuolumne County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz323.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz323.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz323.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz323.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz323.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz323.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz323.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz323.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz323.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz323.txt
 station = ('kban', 0.0086904)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz323.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz323.txt
 
@@ -7192,17 +7192,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz323.txt
 centroid = (0.6583103, -2.0884959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz324.txt
 description = Yosemite Valley, Mariposa County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz324.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz324.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz324.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz324.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz324.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz324.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz324.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz324.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz324.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz324.txt
 station = ('kban', 0.0112031)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz324.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz324.txt
 
@@ -7210,17 +7210,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz324.txt
 centroid = (0.6515070, -2.0824850)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz325.txt
 description = San Joaquin River Canyon, Madera County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz325.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz325.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz325.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz325.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz325.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz325.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz325.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz325.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz325.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz325.txt
 station = ('kmmh', 0.0083829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz325.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz325.txt
 
@@ -7228,17 +7228,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz325.txt
 centroid = (0.6536118, -2.0790275)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz326.txt
 description = Upper San Joaquin River, Madera County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz326.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz326.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz326.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz326.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz326.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz326.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz326.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz326.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz326.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz326.txt
 station = ('kmmh', 0.0049224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz326.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz326.txt
 
@@ -7246,17 +7246,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz326.txt
 centroid = (0.6475939, -2.0774427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz327.txt
 description = Kaiser to Rodgers Ridge, Fresno County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz327.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz327.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz327.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz327.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz327.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz327.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz327.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz327.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz327.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz327.txt
 station = ('kmmh', 0.0093425)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz327.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz327.txt
 
@@ -7264,17 +7264,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz327.txt
 centroid = (0.6440090, -2.0697441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz328.txt
 description = Kings Canyon NP, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz328.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz328.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz328.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz328.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz328.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz328.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz328.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz328.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz328.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz328.txt
 station = ('kbih', 0.0087220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz328.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz328.txt
 
@@ -7282,17 +7282,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz328.txt
 centroid = (0.6421101, -2.0744966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz329.txt
 description = Grant Grove Area, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz329.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz329.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz329.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz329.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz329.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz329.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz329.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz329.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz329.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz329.txt
 station = ('ko32', 0.0085331)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz329.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz329.txt
 
@@ -7300,17 +7300,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz329.txt
 centroid = (0.6371883, -2.0695242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz330.txt
 description = Sequoia NP, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz330.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz330.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz330.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz330.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz330.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz330.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz330.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz330.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz330.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz330.txt
 station = ('kptv', 0.0107960)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz330.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz330.txt
 
@@ -7318,17 +7318,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz330.txt
 centroid = (0.6286833, -2.0654209)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz331.txt
 description = South End of the Upper Sierra, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz331.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz331.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz331.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz331.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz331.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz331.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz331.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz331.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz331.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz331.txt
 station = ('knid', 0.0108007)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz331.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz331.txt
 
@@ -7336,17 +7336,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz331.txt
 centroid = (0.6220842, -2.0666828)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz332.txt
 description = Kern River Valley, Tulare County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz332.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz332.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz332.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz332.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz332.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz332.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz332.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz332.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz332.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz332.txt
 station = ('ktsp', 0.0088710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz332.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz332.txt
 
@@ -7354,17 +7354,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz332.txt
 centroid = (0.6185150, -2.0669795)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz333.txt
 description = Piute Walker Basin, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz333.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz333.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz333.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz333.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz333.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz333.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz333.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz333.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz333.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz333.txt
 station = ('ktsp', 0.0052955)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz333.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz333.txt
 
@@ -7372,17 +7372,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz333.txt
 centroid = (0.6131761, -2.0690390)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz334.txt
 description = Tehachapi, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz334.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz334.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz334.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz334.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz334.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz334.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz334.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz334.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz334.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz334.txt
 station = ('ktsp', 0.0015450)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz334.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz334.txt
 
@@ -7390,17 +7390,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz334.txt
 centroid = (0.6089611, -2.0752715)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz335.txt
 description = Grapevine, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz335.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz335.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz335.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz335.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz335.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz335.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz335.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz335.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz335.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz335.txt
 station = ('ksdb', 0.0036435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz335.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz335.txt
 
@@ -7408,17 +7408,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz335.txt
 centroid = (0.6095370, -2.0801043)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz336.txt
 description = Frazier Mountain Communities, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz336.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz336.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz336.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz336.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz336.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz336.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz336.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz336.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz336.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz336.txt
 station = ('ksdb', 0.0073141)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz336.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz336.txt
 
@@ -7426,17 +7426,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz336.txt
 centroid = (0.6216776, -2.0552840)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz337.txt
 description = Indian Wells Valley, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz337.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz337.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz337.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz337.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz337.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz337.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz337.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz337.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz337.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz337.txt
 station = ('knid', 0.0013942)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz337.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz337.txt
 
@@ -7444,17 +7444,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz337.txt
 centroid = (0.6149912, -2.0627924)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz338.txt
 description = Mojave Desert Slopes, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz338.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz338.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz338.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz338.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz338.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz338.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz338.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz338.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz338.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz338.txt
 station = ('kmhv', 0.0030150)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz338.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz338.txt
 
@@ -7462,17 +7462,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz338.txt
 centroid = (0.6121463, -2.0578339)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz339.txt
 description = Mojave Desert, Kern County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz339.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz339.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz339.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz339.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz339.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz339.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz339.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz339.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz339.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz339.txt
 station = ('k9l2', 0.0017588)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz339.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz339.txt
 
@@ -7480,17 +7480,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz339.txt
 centroid = (0.6172462, -2.1098535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz340.txt
 description = San Luis Obispo County Beaches, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz340.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz340.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz340.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz340.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz340.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz340.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz340.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz340.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz340.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz340.txt
 station = ('ksbp', 0.0042722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz340.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz340.txt
 
@@ -7498,17 +7498,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz340.txt
 centroid = (0.6129841, -2.1039438)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz341.txt
 description = San Luis Obispo County Inland Central Coast, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz341.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz341.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz341.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz341.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz341.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz341.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz341.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz341.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz341.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz341.txt
 station = ('ksbp', 0.0023087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz341.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz341.txt
 
@@ -7516,17 +7516,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz341.txt
 centroid = (0.6188885, -2.1082705)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz342.txt
 description = Santa Lucia Mountains, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz342.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz342.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz342.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz342.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz342.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz342.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz342.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz342.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz342.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz342.txt
 station = ('kprb', 0.0042798)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz342.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz342.txt
 
@@ -7534,17 +7534,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz342.txt
 centroid = (0.6220266, -2.1068253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz343.txt
 description = Southern Salinas Valley, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz343.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz343.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz343.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz343.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz343.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz343.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz343.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz343.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz343.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz343.txt
 station = ('kprb', 0.0012148)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz343.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz343.txt
 
@@ -7552,17 +7552,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz343.txt
 centroid = (0.6185534, -2.0970689)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz344.txt
 description = San Luis Obispo County Interior Valleys, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz344.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz344.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz344.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz344.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz344.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz344.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz344.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz344.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz344.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz344.txt
 station = ('kprb', 0.0078779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz344.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz344.txt
 
@@ -7570,17 +7570,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz344.txt
 centroid = (0.6139510, -2.0962242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz345.txt
 description = San Luis Obispo County Mountains, San Luis Obispo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz345.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz345.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz345.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz345.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz345.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz345.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz345.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz345.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz345.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz345.txt
 station = ('ksmx', 0.0070767)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz345.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz345.txt
 
@@ -7588,17 +7588,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz345.txt
 centroid = (0.6059417, -2.1040538)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz346.txt
 description = Santa Barbara County Central Coast Beaches, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz346.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz346.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz346.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz346.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz346.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz346.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz346.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz346.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz346.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz346.txt
 station = ('kvbg', 0.0003899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz346.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz346.txt
 
@@ -7606,17 +7606,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz346.txt
 centroid = (0.6065944, -2.1009610)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz347.txt
 description = Santa Barbara County Inland Central Coast, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz347.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz347.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz347.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz347.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz347.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz347.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz347.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz347.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz347.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz347.txt
 station = ('klpc', 0.0020193)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz347.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz347.txt
 
@@ -7624,17 +7624,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz347.txt
 centroid = (0.6054687, -2.0961195)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz348.txt
 description = Santa Ynez Valley, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz348.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz348.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz348.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz348.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz348.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz348.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz348.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz348.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz348.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz348.txt
 station = ('kiza', 0.0015011)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz348.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz348.txt
 
@@ -7642,17 +7642,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz348.txt
 centroid = (0.6022293, -2.0996538)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz349.txt
 description = Santa Barbara County Southwestern Coast, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz349.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz349.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz349.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz349.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz349.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz349.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz349.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz349.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz349.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz349.txt
 station = ('klpc', 0.0036862)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz349.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz349.txt
 
@@ -7660,17 +7660,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz349.txt
 centroid = (0.6009937, -2.0894070)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz350.txt
 description = Santa Barbara County Southeastern Coast, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz350.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz350.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz350.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz350.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz350.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz350.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz350.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz350.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz350.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz350.txt
 station = ('ksba', 0.0019549)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz350.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz350.txt
 
@@ -7678,17 +7678,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz350.txt
 centroid = (0.6024248, -2.0941124)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz351.txt
 description = Santa Ynez Mountains Western Range, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz351.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz351.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz351.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz351.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz351.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz351.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz351.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz351.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz351.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz351.txt
 station = ('kiza', 0.0020583)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz351.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz351.txt
 
@@ -7696,17 +7696,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz351.txt
 centroid = (0.6016272, -2.0865062)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz352.txt
 description = Santa Ynez Mountains Eastern Range, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz352.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz352.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz352.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz352.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz352.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz352.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz352.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz352.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz352.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz352.txt
 station = ('ksba', 0.0043950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz352.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz352.txt
 
@@ -7714,17 +7714,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz352.txt
 centroid = (0.6069330, -2.0913059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz353.txt
 description = Santa Barbara County Interior Mountains, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz353.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz353.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz353.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz353.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz353.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz353.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz353.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz353.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz353.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz353.txt
 station = ('kiza', 0.0046592)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz353.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz353.txt
 
@@ -7732,17 +7732,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz353.txt
 centroid = (0.5971051, -2.0805669)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz354.txt
 description = Ventura County Beaches, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz354.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz354.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz354.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz354.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz354.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz354.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz354.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz354.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz354.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz354.txt
 station = ('koxr', 0.0002310)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz354.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz354.txt
 
@@ -7750,17 +7750,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz354.txt
 centroid = (0.5975414, -2.0781897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz355.txt
 description = Ventura County Inland Coast, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz355.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz355.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz355.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz355.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz355.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz355.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz355.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz355.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz355.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz355.txt
 station = ('kcma', 0.0003876)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz355.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz355.txt
 
@@ -7768,17 +7768,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz355.txt
 centroid = (0.6004125, -2.0829580)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz356.txt
 description = Lake Casitas, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz356.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz356.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz356.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz356.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz356.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz356.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz356.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz356.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz356.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz356.txt
 station = ('koxr', 0.0040831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz356.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz356.txt
 
@@ -7786,17 +7786,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz356.txt
 centroid = (0.6008610, -2.0815058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz357.txt
 description = Ojai Valley, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz357.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz357.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz357.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz357.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz357.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz357.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz357.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz357.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz357.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz357.txt
 station = ('koxr', 0.0040565)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz357.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz357.txt
 
@@ -7804,17 +7804,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz357.txt
 centroid = (0.6002135, -2.0775823)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz358.txt
 description = Central Ventura County Valleys, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz358.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz358.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz358.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz358.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz358.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz358.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz358.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz358.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz358.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz358.txt
 station = ('kcma', 0.0030939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz358.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz358.txt
 
@@ -7822,17 +7822,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz358.txt
 centroid = (0.5941240, -2.0713166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz362.txt
 description = Malibu Coast, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz362.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz362.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz362.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz362.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz362.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz362.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz362.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz362.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz362.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz362.txt
 station = ('ksmo', 0.0033204)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz362.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz362.txt
 
@@ -7840,17 +7840,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz362.txt
 centroid = (0.5907189, -2.0652621)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz366.txt
 description = Los Angeles County Beaches, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz366.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz366.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz366.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz366.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz366.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz366.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz366.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz366.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz366.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz366.txt
 station = ('ktoa', 0.0007985)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz366.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz366.txt
 
@@ -7858,17 +7858,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz366.txt
 centroid = (0.5893139, -2.0658136)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz367.txt
 description = Palos Verdes Hills, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz367.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz367.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz367.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz367.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz367.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz367.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz367.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz367.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz367.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz367.txt
 station = ('ktoa', 0.0007394)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz367.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz367.txt
 
@@ -7876,17 +7876,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz367.txt
 centroid = (0.5925148, -2.0636895)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz368.txt
 description = Los Angeles County Inland Coast including Downtown Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz368.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz368.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz368.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz368.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz368.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz368.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz368.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz368.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz368.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz368.txt
 station = ('kcqt', 0.0016024)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz368.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz368.txt
 
@@ -7894,17 +7894,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz368.txt
 centroid = (0.5949950, -2.0750045)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz369.txt
 description = Western Santa Monica Mountains, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz369.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz369.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz369.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz369.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz369.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz369.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz369.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz369.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz369.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz369.txt
 station = ('kcma', 0.0035653)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz369.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz369.txt
 
@@ -7912,17 +7912,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz369.txt
 centroid = (0.5950491, -2.0693008)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz370.txt
 description = Eastern Santa Monica Mountains, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz370.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz370.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz370.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz370.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz370.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz370.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz370.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz370.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz370.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz370.txt
 station = ('ksmo', 0.0021082)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz370.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz370.txt
 
@@ -7930,17 +7930,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz370.txt
 centroid = (0.5956791, -2.0724441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz371.txt
 description = Calabasas and Agoura Hills, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz371.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz371.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz371.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz371.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz371.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz371.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz371.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz371.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz371.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz371.txt
 station = ('kvny', 0.0040344)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz371.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz371.txt
 
@@ -7948,17 +7948,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz371.txt
 centroid = (0.5973372, -2.0683600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz372.txt
 description = Western San Fernando Valley, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz372.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz372.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz372.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz372.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz372.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz372.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz372.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz372.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz372.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz372.txt
 station = ('kvny', 0.0003879)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz372.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz372.txt
 
@@ -7966,17 +7966,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz372.txt
 centroid = (0.5967246, -2.0647018)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz373.txt
 description = Eastern San Fernando Valley, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz373.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz373.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz373.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz373.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz373.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz373.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz373.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz373.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz373.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz373.txt
 station = ('kbur', 0.0009972)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz373.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz373.txt
 
@@ -7984,17 +7984,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz373.txt
 centroid = (0.5974646, -2.0741388)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz374.txt
 description = Southeastern Ventura County Valleys, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz374.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz374.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz374.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz374.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz374.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz374.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz374.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz374.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz374.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz374.txt
 station = ('kcma', 0.0035306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz374.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz374.txt
 
@@ -8002,17 +8002,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz374.txt
 centroid = (0.6028891, -2.0785754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz375.txt
 description = Santa Susana Mountains, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz375.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz375.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz375.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz375.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz375.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz375.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz375.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz375.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz375.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz375.txt
 station = ('kcma', 0.0056975)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz375.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz375.txt
 
@@ -8020,17 +8020,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz375.txt
 centroid = (0.6028891, -2.0785754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz376.txt
 description = Southern Ventura County Mountains, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz376.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz376.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz376.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz376.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz376.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz376.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz376.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz376.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz376.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz376.txt
 station = ('kcma', 0.0056975)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz376.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz376.txt
 
@@ -8038,17 +8038,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz376.txt
 centroid = (0.6062262, -2.0797535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz377.txt
 description = Northern Ventura County Mountains, Ventura County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz377.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz377.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz377.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz377.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz377.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz377.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz377.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz377.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz377.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz377.txt
 station = ('ksdb', 0.0063799)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz377.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz377.txt
 
@@ -8056,17 +8056,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz377.txt
 centroid = (0.6051336, -2.0721823)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz378.txt
 description = Northwestern Los Angeles County Mountains including the Interstate 5 Corridor, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz378.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz378.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz378.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz378.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz378.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz378.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz378.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz378.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz378.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz378.txt
 station = ('ksdb', 0.0013768)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz378.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz378.txt
 
@@ -8074,17 +8074,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz378.txt
 centroid = (0.6014701, -2.0646617)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz379.txt
 description = Western San Gabriel Mountains including the Highway 14 Corridor, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz379.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz379.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz379.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz379.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz379.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz379.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz379.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz379.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz379.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz379.txt
 station = ('kwhp', 0.0039850)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz379.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz379.txt
 
@@ -8092,17 +8092,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz379.txt
 centroid = (0.5984821, -2.0574046)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz380.txt
 description = Eastern San Gabriel Mountains, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz380.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz380.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz380.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz380.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz380.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz380.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz380.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz380.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz380.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz380.txt
 station = ('kpoc', 0.0036092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz380.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz380.txt
 
@@ -8110,17 +8110,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz380.txt
 centroid = (0.6047461, -2.0660841)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz381.txt
 description = Western Antelope Valley Foothills, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz381.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz381.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz381.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz381.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz381.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz381.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz381.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz381.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz381.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz381.txt
 station = ('kwjf', 0.0027385)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz381.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz381.txt
 
@@ -8128,17 +8128,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz381.txt
 centroid = (0.6019798, -2.0562440)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz382.txt
 description = Eastern Antelope Valley Foothills, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz382.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz382.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz382.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz382.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz382.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz382.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz382.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz382.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz382.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz382.txt
 station = ('kgxa', 0.0023714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz382.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz382.txt
 
@@ -8146,17 +8146,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz382.txt
 centroid = (0.6056310, -2.0603298)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz383.txt
 description = Antelope Valley, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz383.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz383.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz383.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz383.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz383.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz383.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz383.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz383.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz383.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz383.txt
 station = ('kpmd', 0.0012698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz383.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz383.txt
 
@@ -8164,17 +8164,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz383.txt
 centroid = (0.6642758, -2.1412729)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz502.txt
 description = Marin Coastal Range, Marin County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz502.txt
 station = ('kdvo', 0.0023026)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz502.txt
 
@@ -8182,17 +8182,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz502.txt
 centroid = (0.6747408, -2.1495842)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz503.txt
 description = Sonoma Coastal Range, Sonoma County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz503.txt
 station = ('ksts', 0.0054765)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz503.txt
 
@@ -8200,17 +8200,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz503.txt
 centroid = (0.6733882, -2.1370387)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz504.txt
 description = North Bay Interior Mountains, Sonoma County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz504.txt
 station = ('ko69', 0.0060819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz504.txt
 
@@ -8218,17 +8218,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz504.txt
 centroid = (0.6673511, -2.1459574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz505.txt
 description = Coastal North Bay Including Point Reyes National Seashore, Sonoma County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz505.txt
 station = ('ksts', 0.0049713)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz505.txt
 
@@ -8236,17 +8236,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz505.txt
 centroid = (0.6696793, -2.1405050)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz506.txt
 description = North Bay Interior Valleys, Sonoma County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz506.txt
 station = ('ko69', 0.0020183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz506.txt
 
@@ -8254,17 +8254,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz506.txt
 centroid = (0.6561356, -2.1321815)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz508.txt
 description = San Francisco Bay Shoreline, Santa Clara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz508.txt
 station = ('khwd', 0.0014366)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz508.txt
 
@@ -8272,17 +8272,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz508.txt
 centroid = (0.6522994, -2.1361486)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz509.txt
 description = San Fransisco Peninsula Coast, Santa Cruz County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz509.txt
 station = ('khaf', 0.0028615)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz509.txt
 
@@ -8290,17 +8290,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz509.txt
 centroid = (0.6611360, -2.1272090)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz510.txt
 description = East Bay Interior Valleys, Contra Costa County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz510.txt
 station = ('kccr', 0.0031359)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz510.txt
 
@@ -8308,17 +8308,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz510.txt
 centroid = (0.6487843, -2.1299998)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz512.txt
 description = Santa Cruz Mountains, Santa Cruz County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz512.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz512.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz512.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz512.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz512.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz512.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz512.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz512.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz512.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz512.txt
 station = ('ksjc', 0.0037956)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz512.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz512.txt
 
@@ -8326,17 +8326,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz512.txt
 centroid = (0.6496046, -2.1257604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz513.txt
 description = Santa Clara Valley Including San Jose, Santa Clara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz513.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz513.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz513.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz513.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz513.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz513.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz513.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz513.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz513.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz513.txt
 station = ('krhv', 0.0020035)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz513.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz513.txt
 
@@ -8344,17 +8344,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz513.txt
 centroid = (0.6500130, -2.1210585)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz514.txt
 description = Eastern Santa Clara Hills, Santa Clara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz514.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz514.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz514.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz514.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz514.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz514.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz514.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz514.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz514.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz514.txt
 station = ('ke16', 0.0029767)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz514.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz514.txt
 
@@ -8362,17 +8362,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz514.txt
 centroid = (0.6580677, -2.1261618)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz515.txt
 description = East Bay Hills, Contra Costa County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz515.txt
 station = ('klvk', 0.0000917)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz515.txt
 
@@ -8380,17 +8380,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz515.txt
 centroid = (0.6300883, -2.1128013)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz516.txt
 description = Southern Salinas Valley/Arroyo Seco and Lake San Antonio, Monterey County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz516.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz516.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz516.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz516.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz516.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz516.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz516.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz516.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz516.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz516.txt
 station = ('kprb', 0.0096466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz516.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz516.txt
 
@@ -8398,17 +8398,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz516.txt
 centroid = (0.6311215, -2.1191578)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz517.txt
 description = Santa Lucia Mountains and Los Padres National Forest, Monterey County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz517.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz517.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz517.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz517.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz517.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz517.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz517.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz517.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz517.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz517.txt
 station = ('ksns', 0.0091919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz517.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz517.txt
 
@@ -8416,17 +8416,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz517.txt
 centroid = (0.6348077, -2.1104766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz518.txt
 description = Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Monument, San Benito County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz518.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz518.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz518.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz518.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz518.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz518.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz518.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz518.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz518.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz518.txt
 station = ('kcvh', 0.0113875)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz518.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz518.txt
 
@@ -8434,17 +8434,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz518.txt
 centroid = (0.6427507, -2.0654401)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz519.txt
 description = Eastern Sierra Slopes of Inyo County, Inyo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz519.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz519.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz519.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz519.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz519.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz519.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz519.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz519.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz519.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz519.txt
 station = ('kbih', 0.0094275)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz519.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz519.txt
 
@@ -8452,17 +8452,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz519.txt
 centroid = (0.6372773, -2.0597102)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz520.txt
 description = Owens Valley, Inyo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz520.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz520.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz520.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz520.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz520.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz520.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz520.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz520.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz520.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz520.txt
 station = ('knid', 0.0151420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz520.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz520.txt
 
@@ -8470,17 +8470,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz520.txt
 centroid = (0.6459533, -2.0601657)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz521.txt
 description = White Mountains of Inyo County, Inyo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz521.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz521.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz521.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz521.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz521.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz521.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz521.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz521.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz521.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz521.txt
 station = ('kbih', 0.0077101)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz521.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz521.txt
 
@@ -8488,17 +8488,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz521.txt
 centroid = (0.6356472, -2.0437910)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz522.txt
 description = Death Valley National Park, Inyo County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz522.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz522.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz522.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz522.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz522.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz522.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz522.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz522.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz522.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz522.txt
 station = ('knid', 0.0153883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz522.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz522.txt
 
@@ -8506,17 +8506,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz522.txt
 centroid = (0.6161937, -2.0420440)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz523.txt
 description = Western Mojave Desert, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz523.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz523.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz523.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz523.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz523.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz523.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz523.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz523.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz523.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz523.txt
 station = ('kbys', 0.0054812)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz523.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz523.txt
 
@@ -8524,17 +8524,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz523.txt
 centroid = (0.6133052, -2.0194664)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz524.txt
 description = Eastern Mojave Desert Including the Mojave National Preserve, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz524.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz524.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz524.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz524.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz524.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz524.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz524.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz524.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz524.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz524.txt
 station = ('kbys', 0.0132127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz524.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz524.txt
 
@@ -8542,17 +8542,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz524.txt
 centroid = (0.5993880, -2.0262348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz525.txt
 description = Morongo Basin, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz525.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz525.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz525.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz525.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz525.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz525.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz525.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz525.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz525.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz525.txt
 station = ('knxp', 0.0012743)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz525.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz525.txt
 
@@ -8560,17 +8560,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz525.txt
 centroid = (0.6001297, -2.0087972)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz526.txt
 description = Cadiz Basin, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz526.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz526.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz526.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz526.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz526.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz526.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz526.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz526.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz526.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz526.txt
 station = ('keed', 0.0095795)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz526.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz526.txt
 
@@ -8578,17 +8578,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz526.txt
 centroid = (0.6021176, -1.9984212)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz527.txt
 description = San Bernadino County-Upper Colorado River Valley, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz527.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz527.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz527.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz527.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz527.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz527.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz527.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz527.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz527.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz527.txt
 station = ('khii', 0.0024135)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz527.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz527.txt
 
@@ -8596,17 +8596,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz527.txt
 centroid = (0.6401327, -2.1206571)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz528.txt
 description = Northern Salinas Valley/Hollister Valley and Carmel Valley, San Benito County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz528.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz528.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz528.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz528.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz528.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz528.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz528.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz528.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz528.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz528.txt
 station = ('ksns', 0.0013460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz528.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz528.txt
 
@@ -8614,17 +8614,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz528.txt
 centroid = (0.6453477, -2.1275651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz529.txt
 description = Northern Monterey Bay, Santa Cruz County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz529.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz529.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz529.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz529.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz529.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz529.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz529.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz529.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz529.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz529.txt
 station = ('kwvi', 0.0017937)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz529.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz529.txt
 
@@ -8632,17 +8632,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz529.txt
 centroid = (0.6390785, -2.1250536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz530.txt
 description = Southern Monterey Bay and Big Sur Coast, Monterey County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz530.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz530.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz530.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz530.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz530.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz530.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz530.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz530.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz530.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz530.txt
 station = ('koar', 0.0011439)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz530.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz530.txt
 
@@ -8650,17 +8650,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz530.txt
 centroid = (0.5945586, -2.0590312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz548.txt
 description = Los Angeles County San Gabriel Valley, Los Angeles County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz548.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz548.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz548.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz548.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz548.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz548.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz548.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz548.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz548.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz548.txt
 station = ('kemt', 0.0009140)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz548.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz548.txt
 
@@ -8668,17 +8668,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz548.txt
 centroid = (0.5930175, -2.0969468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz549.txt
 description = San Miguel and Santa Rosa Islands, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz549.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz549.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz549.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz549.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz549.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz549.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz549.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz549.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz549.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz549.txt
 station = ('ksba', 0.0090334)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz549.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz549.txt
 
@@ -8686,17 +8686,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz549.txt
 centroid = (0.5936528, -2.0898852)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz550.txt
 description = Santa Cruz and Anacapa Islands, Santa Barbara County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz550.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz550.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz550.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz550.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz550.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz550.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz550.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz550.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz550.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz550.txt
 station = ('ksba', 0.0074875)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz550.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz550.txt
 
@@ -8704,17 +8704,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz550.txt
 centroid = (0.5882248, -2.0558216)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz552.txt
 description = Orange County Coastal, Orange County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz552.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz552.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz552.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz552.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz552.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz552.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz552.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz552.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz552.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz552.txt
 station = ('ksna', 0.0011654)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz552.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz552.txt
 
@@ -8722,17 +8722,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz552.txt
 centroid = (0.5885844, -2.0554830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz554.txt
 description = Orange County Inland, Orange County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz554.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz554.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz554.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz554.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz554.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz554.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz554.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz554.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz554.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz554.txt
 station = ('ksna', 0.0015616)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz554.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz554.txt
 
@@ -8740,17 +8740,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz554.txt
 centroid = (0.5922932, -2.0260602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz560.txt
 description = Joshua Tree NP West, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz560.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz560.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz560.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz560.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz560.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz560.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz560.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz560.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz560.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz560.txt
 station = ('ktrm', 0.0055050)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz560.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz560.txt
 
@@ -8758,17 +8758,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz560.txt
 centroid = (0.5926510, -2.0185309)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz561.txt
 description = Joshua Tree NP East, San Bernardino County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz561.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz561.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz561.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz561.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz561.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz561.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz561.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz561.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz561.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz561.txt
 station = ('ktrm', 0.0093283)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz561.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz561.txt
 
@@ -8776,17 +8776,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz561.txt
 centroid = (0.5726931, -2.0252626)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz562.txt
 description = Imperial County Southwest, Imperial County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz562.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz562.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz562.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz562.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz562.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz562.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz562.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz562.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz562.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz562.txt
 station = ('knjk', 0.0055549)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz562.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz562.txt
 
@@ -8794,17 +8794,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz562.txt
 centroid = (0.5813535, -2.0212588)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz563.txt
 description = Salton Sea, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz563.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz563.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz563.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz563.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz563.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz563.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz563.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz563.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz563.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz563.txt
 station = ('kl08', 0.0075120)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz563.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz563.txt
 
@@ -8812,17 +8812,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz563.txt
 centroid = (0.5824426, -2.0118829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz564.txt
 description = Chuckwalla Mountains, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz564.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz564.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz564.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz564.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz564.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz564.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz564.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz564.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz564.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz564.txt
 station = ('kblh', 0.0091508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz564.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz564.txt
 
@@ -8830,17 +8830,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz564.txt
 centroid = (0.5739690, -2.0069576)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz565.txt
 description = Imperial County Southeast, Imperial County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz565.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz565.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz565.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz565.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz565.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz565.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz565.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz565.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz565.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz565.txt
 station = ('knyl', 0.0070540)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz565.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz565.txt
 
@@ -8848,17 +8848,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz565.txt
 centroid = (0.5757981, -2.0228506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz566.txt
 description = Imperial County West, Imperial County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz566.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz566.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz566.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz566.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz566.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz566.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz566.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz566.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz566.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz566.txt
 station = ('knjk', 0.0045570)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz566.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz566.txt
 
@@ -8866,17 +8866,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz566.txt
 centroid = (0.5746409, -2.0161782)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz567.txt
 description = Imperial Valley, Imperial County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz567.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz567.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz567.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz567.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz567.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz567.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz567.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz567.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz567.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz567.txt
 station = ('kipl', 0.0018061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz567.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz567.txt
 
@@ -8884,17 +8884,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz567.txt
 centroid = (0.5878007, -2.0190527)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz568.txt
 description = Chiriaco Summit, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz568.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz568.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz568.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz568.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz568.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz568.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz568.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz568.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz568.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz568.txt
 station = ('ktrm', 0.0069779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz568.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz568.txt
 
@@ -8902,17 +8902,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz568.txt
 centroid = (0.5833868, -2.0010671)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz569.txt
 description = Palo Verde Valley, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz569.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz569.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz569.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz569.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz569.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz569.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz569.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz569.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz569.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz569.txt
 station = ('kblh', 0.0034622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz569.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz569.txt
 
@@ -8920,17 +8920,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz569.txt
 centroid = (0.5901395, -2.0074463)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ca/caz570.txt
 description = Chuckwalla Valley, Riverside County, CA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/caz570.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/caz570.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ca/cac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ca/cac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ca/caz570.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ca/caz570.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/caz570.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/caz570.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/caz570.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ca/cac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ca/cac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ca/cac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ca/caz570.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ca/caz570.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz570.txt
 station = ('kblh', 0.0055539)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz570.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz570.txt
 
@@ -8938,17 +8938,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz570.txt
 centroid = (0.7058810, -1.8971624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz001.txt
 description = Lower Yampa River Basin, Rio Blanco County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz001.txt
 station = ('k4v0', 0.0061329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz001.txt
 
@@ -8956,17 +8956,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz001.txt
 centroid = (0.7051933, -1.8834441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz002.txt
 description = Central Yampa River Basin, Routt County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz002.txt
 station = ('kcag', 0.0055258)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz002.txt
 
@@ -8974,17 +8974,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz002.txt
 centroid = (0.6907280, -1.8925949)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz003.txt
 description = Roan and Tavaputs Plateaus, Rio Blanco County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz003.txt
 station = ('kgjt', 0.0078296)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz003.txt
 
@@ -8992,17 +8992,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz003.txt
 centroid = (0.7079980, -1.8667204)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz004.txt
 description = Elkhead and Park Mountains, Routt County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz004.txt
 station = ('ksbs', 0.0014489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz004.txt
 
@@ -9010,17 +9010,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz004.txt
 centroid = (0.7049437, -1.8668321)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz005.txt
 description = Upper Yampa River Basin, Routt County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz005.txt
 station = ('ksbs', 0.0025404)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz005.txt
 
@@ -9028,17 +9028,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz005.txt
 centroid = (0.6833680, -1.8968395)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz006.txt
 description = Grand Valley, Mesa County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz006.txt
 station = ('kgjt', 0.0020301)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz006.txt
 
@@ -9046,17 +9046,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz006.txt
 centroid = (0.6883963, -1.8845594)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz007.txt
 description = Debeque to Silt Corridor, Mesa County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz007.txt
 station = ('kril', 0.0035342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz007.txt
 
@@ -9064,17 +9064,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz007.txt
 centroid = (0.6916495, -1.8680119)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz008.txt
 description = Central Colorado River Basin, Pitkin County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz008.txt
 station = ('kege', 0.0015579)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz008.txt
 
@@ -9082,17 +9082,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz008.txt
 centroid = (0.6830032, -1.8824231)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz009.txt
 description = Grand and Battlement Mesas, Mesa County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz009.txt
 station = ('kril', 0.0068911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz009.txt
 
@@ -9100,17 +9100,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz009.txt
 centroid = (0.6882758, -1.8642682)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz010.txt
 description = Gore and Elk Mountains/Central Mountain Valleys, Pitkin County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz010.txt
 station = ('kase', 0.0035941)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz010.txt
 
@@ -9118,17 +9118,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz010.txt
 centroid = (0.6749799, -1.8835611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz011.txt
 description = Central Gunnison and Uncompahgre River Basin, Montrose County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz011.txt
 station = ('kmtj', 0.0030405)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz011.txt
 
@@ -9136,17 +9136,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz011.txt
 centroid = (0.6772069, -1.8675756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz012.txt
 description = West Elk and Sawatch Mountains, Montrose County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz012.txt
 station = ('kguc', 0.0047721)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz012.txt
 
@@ -9154,17 +9154,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz012.txt
 centroid = (0.6977233, -1.8751399)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz013.txt
 description = Flattops, Routt County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz013.txt
 station = ('keeo', 0.0060944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz013.txt
 
@@ -9172,17 +9172,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz013.txt
 centroid = (0.6715608, -1.8707853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz014.txt
 description = Upper Gunnison River Valley, Montrose County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz014.txt
 station = ('kguc', 0.0036130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz014.txt
 
@@ -9190,17 +9190,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz014.txt
 centroid = (0.6728925, -1.8924535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz017.txt
 description = Uncompahgre Plateu/Dallas Divide, San Miguel County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz017.txt
 station = ('kaib', 0.0057922)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz017.txt
 
@@ -9208,17 +9208,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz017.txt
 centroid = (0.6642514, -1.8771086)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz018.txt
 description = Northwestern San Juan Mountains, San Miguel County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz018.txt
 station = ('ktex', 0.0052555)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz018.txt
 
@@ -9226,17 +9226,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz018.txt
 centroid = (0.6548580, -1.8790162)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz019.txt
 description = Southwest San Juan Mountains, San Miguel County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz019.txt
 station = ('kdro', 0.0066363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz019.txt
 
@@ -9244,17 +9244,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz019.txt
 centroid = (0.6666512, -1.8973387)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz020.txt
 description = Paradox Valley/Little Dolores River, San Miguel County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz020.txt
 station = ('kaib', 0.0021383)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz020.txt
 
@@ -9262,17 +9262,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz020.txt
 centroid = (0.6524198, -1.8976581)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz021.txt
 description = Four Corners/Upper Dolores River, San Miguel County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz021.txt
 station = ('kcez', 0.0019266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz021.txt
 
@@ -9280,17 +9280,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz021.txt
 centroid = (0.6483689, -1.8828176)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz022.txt
 description = Animas River Basin, La Plata County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz022.txt
 station = ('kdro', 0.0015420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz022.txt
 
@@ -9298,17 +9298,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz022.txt
 centroid = (0.6481856, -1.8709999)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz023.txt
 description = San Juan River Basin, Archuleta County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz023.txt
 station = ('kpso', 0.0032712)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz023.txt
 
@@ -9316,17 +9316,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz023.txt
 centroid = (0.7099406, -1.8554421)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz030.txt
 description = Jackson County Below 9000 Feet, Jackson County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz030.txt
 station = ('ksbs', 0.0079000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz030.txt
 
@@ -9334,17 +9334,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz030.txt
 centroid = (0.7089091, -1.8606816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz031.txt
 description = West Jackson and West Grand Counties Above 9000 Feet, Jackson County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz031.txt
 station = ('ksbs', 0.0038405)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz031.txt
 
@@ -9352,17 +9352,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz031.txt
 centroid = (0.6993988, -1.8536967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz032.txt
 description = Grand and Summit Counties Below 9000 Feet, Summit County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz032.txt
 station = ('k20v', 0.0021613)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz032.txt
 
@@ -9370,17 +9370,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz032.txt
 centroid = (0.7066489, -1.8484276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz033.txt
 description = South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet, Larimer County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz033.txt
 station = ('kgnb', 0.0069529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz033.txt
 
@@ -9388,17 +9388,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz033.txt
 centroid = (0.6912272, -1.8474397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz034.txt
 description = South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet, Summit County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz034.txt
 station = ('k0co', 0.0035161)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz034.txt
 
@@ -9406,17 +9406,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz034.txt
 centroid = (0.7087765, -1.8408127)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz035.txt
 description = Larimer and Boulder Counties Between 6000 and 9000 Feet, Larimer County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz035.txt
 station = ('kfnl', 0.0066394)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz035.txt
 
@@ -9424,17 +9424,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz035.txt
 centroid = (0.6891223, -1.8372749)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz036.txt
 description = Jefferson and West Douglas Counties Above  6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet, Park County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz036.txt
 station = ('kapa', 0.0058115)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz036.txt
 
@@ -9442,17 +9442,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz036.txt
 centroid = (0.6804096, -1.8443540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz037.txt
 description = Central and Southeast Park County, Park County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz037.txt
 station = ('k4bm', 0.0024449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz037.txt
 
@@ -9460,17 +9460,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz037.txt
 centroid = (0.7106684, -1.8298433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz038.txt
 description = Larimer County Below 6000 Feet/Northwest Weld County, Weld County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz038.txt
 station = ('kfnl', 0.0052220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz038.txt
 
@@ -9478,17 +9478,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz038.txt
 centroid = (0.6974440, -1.8353184)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz039.txt
 description = Boulder And Jefferson Counties Below 6000 Feet/West Broomfield County, Jefferson County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz039.txt
 station = ('kbjc', 0.0009301)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz039.txt
 
@@ -9496,17 +9496,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz039.txt
 centroid = (0.6940406, -1.8291749)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz040.txt
 description = North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County, Douglas County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz040.txt
 station = ('kbkf', 0.0011497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz040.txt
 
@@ -9514,17 +9514,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz040.txt
 centroid = (0.6860453, -1.8240279)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz041.txt
 description = Elbert/Central and East Douglas Counties Above 6000 Feet, Elbert County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz041.txt
 station = ('kmnh', 0.0023145)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz041.txt
 
@@ -9532,17 +9532,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz041.txt
 centroid = (0.7110943, -1.8151861)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz042.txt
 description = Northeast Weld County, Weld County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz042.txt
 station = ('kfmm', 0.0075731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz042.txt
 
@@ -9550,17 +9550,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz042.txt
 centroid = (0.7027882, -1.8254818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz043.txt
 description = Central and South Weld County, Weld County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz043.txt
 station = ('kgxy', 0.0029571)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz043.txt
 
@@ -9568,17 +9568,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz043.txt
 centroid = (0.7027167, -1.8118228)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz044.txt
 description = Morgan County, Morgan County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz044.txt
 station = ('kfmm', 0.0012771)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz044.txt
 
@@ -9586,17 +9586,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz044.txt
 centroid = (0.6943600, -1.8169715)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz045.txt
 description = Central and East Adams and Arapahoe Counties, Arapahoe County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz045.txt
 station = ('kcfo', 0.0058053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz045.txt
 
@@ -9604,17 +9604,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz045.txt
 centroid = (0.6868918, -1.8095818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz046.txt
 description = North and Northeast Elbert County Below 6000 Feet/North Lincoln County, Lincoln County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz046.txt
 station = ('klic', 0.0015718)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz046.txt
 
@@ -9622,17 +9622,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz046.txt
 centroid = (0.6772715, -1.8080634)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz047.txt
 description = Southeast Elbert County Below 6000 Feet/South Lincoln County, Lincoln County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz047.txt
 station = ('klic', 0.0081204)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz047.txt
 
@@ -9640,17 +9640,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz047.txt
 centroid = (0.7107801, -1.7996107)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz048.txt
 description = Logan County, Logan County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz048.txt
 station = ('kstk', 0.0028122)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz048.txt
 
@@ -9658,17 +9658,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz048.txt
 centroid = (0.6976256, -1.8012025)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz049.txt
 description = Washington County, Washington County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz049.txt
 station = ('kako', 0.0034212)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz049.txt
 
@@ -9676,17 +9676,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz049.txt
 centroid = (0.7134173, -1.7863759)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz050.txt
 description = Sedgwick County, Sedgwick County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz050.txt
 station = ('kheq', 0.0054483)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz050.txt
 
@@ -9694,17 +9694,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz050.txt
 centroid = (0.7084972, -1.7864754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz051.txt
 description = Phillips County, Phillips County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz051.txt
 station = ('kheq', 0.0011989)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz051.txt
 
@@ -9712,17 +9712,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz051.txt
 centroid = (0.6851203, -1.8537858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz058.txt
 description = Western Mosquito Range/East Lake County Above 11000 Ft, Lake County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz058.txt
 station = ('klxv', 0.0014348)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz058.txt
 
@@ -9730,17 +9730,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz058.txt
 centroid = (0.6839474, -1.8560634)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz059.txt
 description = Leadville Vicinity/Lake County Below 11000 Ft, Lake County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz059.txt
 station = ('klxv', 0.0008878)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz059.txt
 
@@ -9748,17 +9748,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz059.txt
 centroid = (0.6775316, -1.8563078)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz060.txt
 description = Eastern Sawatch Mountains above 11000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz060.txt
 station = ('k7bm', 0.0020189)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz060.txt
 
@@ -9766,17 +9766,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz060.txt
 centroid = (0.6761667, -1.8545153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz061.txt
 description = Western Chaffee County Between 9000 and 11000 Ft, Chaffee County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz061.txt
 station = ('k7bm', 0.0008817)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz061.txt
 
@@ -9784,17 +9784,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz061.txt
 centroid = (0.6752208, -1.8516687)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz062.txt
 description = Central Chaffee County Below 9000 Ft, Chaffee County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz062.txt
 station = ('kaej', 0.0022462)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz062.txt
 
@@ -9802,17 +9802,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz062.txt
 centroid = (0.6776119, -1.8504906)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz063.txt
 description = Western Mosquito Range/East Chaffee County above 9000Ft, Chaffee County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz063.txt
 station = ('kaej', 0.0013073)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz063.txt
 
@@ -9820,17 +9820,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz063.txt
 centroid = (0.6685711, -1.8623431)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz064.txt
 description = Saguache County West of Continental Divide Below 10000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz064.txt
 station = ('kguc', 0.0050499)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz064.txt
 
@@ -9838,17 +9838,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz064.txt
 centroid = (0.6650944, -1.8560233)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz065.txt
 description = Saquache County East of Continental Divide below 10000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz065.txt
 station = ('k04v', 0.0023917)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz065.txt
 
@@ -9856,17 +9856,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz065.txt
 centroid = (0.6636248, -1.8628213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz066.txt
 description = La Garita Mountains Above 10000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz066.txt
 station = ('krcv', 0.0074992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz066.txt
 
@@ -9874,17 +9874,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz066.txt
 centroid = (0.6539574, -1.8594965)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz067.txt
 description = Upper Rio Grande Valley/Eastern San Juan Mountains Below 10000 Ft, Rio Grande County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz067.txt
 station = ('kcpw', 0.0036010)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz067.txt
 
@@ -9892,17 +9892,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz067.txt
 centroid = (0.6532279, -1.8622698)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz068.txt
 description = Eastern San Juan Mountains Above 10000 Ft, Rio Grande County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz068.txt
 station = ('kcpw', 0.0014497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz068.txt
 
@@ -9910,17 +9910,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz068.txt
 centroid = (0.6617451, -1.8506546)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz069.txt
 description = Del Norte Vicinity/Northern San Luis Valley Below 8500 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz069.txt
 station = ('k04v', 0.0036721)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz069.txt
 
@@ -9928,17 +9928,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz069.txt
 centroid = (0.6555701, -1.8481798)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz070.txt
 description = Alamosa  Vicinity/Central San Luis Valley Below 8500 Ft, Rio Grande County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz070.txt
 station = ('kals', 0.0022645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz070.txt
 
@@ -9946,17 +9946,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz070.txt
 centroid = (0.6496534, -1.8457503)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz071.txt
 description = Southern San Luis Valley, Costilla County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz071.txt
 station = ('kals', 0.0040014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz071.txt
 
@@ -9964,17 +9964,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz071.txt
 centroid = (0.6615112, -1.8419838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz072.txt
 description = Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz072.txt
 station = ('kvtp', 0.0086688)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz072.txt
 
@@ -9982,17 +9982,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz072.txt
 centroid = (0.6628185, -1.8433644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz073.txt
 description = Northern Sangre de Cristo Mountains above 11000 Ft, Saguache County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz073.txt
 station = ('k04v', 0.0078690)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz073.txt
 
@@ -10000,17 +10000,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz073.txt
 centroid = (0.6496901, -1.8330443)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz074.txt
 description = Southern Sangre De Cristo Mountains Between 7500 and 11000 Ft, Las Animas County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz074.txt
 station = ('kvtp', 0.0052102)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz074.txt
 
@@ -10018,17 +10018,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz074.txt
 centroid = (0.6493428, -1.8355767)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz075.txt
 description = Southern Sangre De Cristo Mountains Above 11000 Ft, Las Animas County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz075.txt
 station = ('kvtp', 0.0051754)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz075.txt
 
@@ -10036,17 +10036,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz075.txt
 centroid = (0.6737163, -1.8438967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz076.txt
 description = Northwestern Fremont County  Above 8500Ft, Fremont County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz076.txt
 station = ('kank', 0.0055874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz076.txt
 
@@ -10054,17 +10054,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz076.txt
 centroid = (0.6706393, -1.8422963)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz077.txt
 description = Western/Central Fremont County Below 8500 Ft, Fremont County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz077.txt
 station = ('k1v6', 0.0061525)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz077.txt
 
@@ -10072,17 +10072,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz077.txt
 centroid = (0.6655865, -1.8404532)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz078.txt
 description = Wet Mountain Valley Below 8500 Ft, Huerfano County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz078.txt
 station = ('k1v6', 0.0069541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz078.txt
 
@@ -10090,17 +10090,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz078.txt
 centroid = (0.6640280, -1.8351596)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz079.txt
 description = Wet Mountains between 6300 and 10000Ft, Pueblo County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz079.txt
 station = ('k1v6', 0.0066913)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz079.txt
 
@@ -10108,17 +10108,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz079.txt
 centroid = (0.6630296, -1.8349432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz080.txt
 description = Wet Mountains above 10000 Ft, Pueblo County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz080.txt
 station = ('k4v1', 0.0070247)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz080.txt
 
@@ -10126,17 +10126,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz080.txt
 centroid = (0.6784234, -1.8345679)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz081.txt
 description = Teller County/Rampart Range above 7500fT/Pike's Peak Between 7500 And 11000 Ft, Teller County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz081.txt
 station = ('kaff', 0.0043580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz081.txt
 
@@ -10144,17 +10144,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz081.txt
 centroid = (0.6774600, -1.8334055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz082.txt
 description = Pikes Peak above 11000 Ft, Teller County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz082.txt
 station = ('kaff', 0.0040855)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz082.txt
 
@@ -10162,17 +10162,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz082.txt
 centroid = (0.6709796, -1.8345994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz083.txt
 description = Canon City Vicinity/Eastern Fremont County, Teller County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz083.txt
 station = ('k1v6', 0.0003093)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz083.txt
 
@@ -10180,17 +10180,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz083.txt
 centroid = (0.6808948, -1.8229929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz084.txt
 description = Northern El Paso County/Monument Ridge/Rampart Range Below 7500 Ft, El Paso County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz084.txt
 station = ('kfly', 0.0020027)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz084.txt
 
@@ -10198,17 +10198,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz084.txt
 centroid = (0.6756606, -1.8239284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz085.txt
 description = Colorado Springs Vicinity/Southern El Paso County/Rampart Range Below 7400 Ft, El Paso County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz085.txt
 station = ('kabh', 0.0028628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz085.txt
 
@@ -10216,17 +10216,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz085.txt
 centroid = (0.6664034, -1.8236457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz086.txt
 description = Pueblo Vicinity/Pueblo County Below 6300 Feet, Pueblo County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz086.txt
 station = ('kpub', 0.0017755)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz086.txt
 
@@ -10234,17 +10234,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz086.txt
 centroid = (0.6578128, -1.8301139)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz087.txt
 description = Walsenburg Vicinity/Upper Huerfano River Basin Below 7500 Ft, Huerfano County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz087.txt
 station = ('k4v1', 0.0010260)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz087.txt
 
@@ -10252,17 +10252,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz087.txt
 centroid = (0.6519468, -1.8220103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz088.txt
 description = Trinidad Vicinity/Western Las Animas County Below 7500 Ft, Las Animas County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz088.txt
 station = ('ktad', 0.0016182)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz088.txt
 
@@ -10270,17 +10270,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz088.txt
 centroid = (0.6689254, -1.8113882)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz089.txt
 description = Crowley County, Crowley County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz089.txt
 station = ('klhx', 0.0060700)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz089.txt
 
@@ -10288,17 +10288,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz089.txt
 centroid = (0.6981823, -1.7876413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz090.txt
 description = Yuma County, Yuma County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz090.txt
 station = ('k2v5', 0.0029811)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz090.txt
 
@@ -10306,17 +10306,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz090.txt
 centroid = (0.6860086, -1.7907584)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz091.txt
 description = Kit Carson County, Kit Carson County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz091.txt
 station = ('kitr', 0.0044244)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz091.txt
 
@@ -10324,17 +10324,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz091.txt
 centroid = (0.6776747, -1.7907672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz092.txt
 description = Cheyenne County, Cheyenne County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz092.txt
 station = ('kitr', 0.0085498)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz092.txt
 
@@ -10342,17 +10342,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz092.txt
 centroid = (0.6615269, -1.8101927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz093.txt
 description = La Junta Vicinity/Otero County, Otero County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz093.txt
 station = ('klhx', 0.0037630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz093.txt
 
@@ -10360,17 +10360,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz093.txt
 centroid = (0.6513935, -1.8075415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz094.txt
 description = Eastern Las Animas County, Las Animas County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz094.txt
 station = ('klhx', 0.0127214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz094.txt
 
@@ -10378,17 +10378,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz094.txt
 centroid = (0.6706253, -1.7992931)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz095.txt
 description = Western Kiowa County, Kiowa County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz095.txt
 station = ('klaa', 0.0083821)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz095.txt
 
@@ -10396,17 +10396,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz095.txt
 centroid = (0.6709290, -1.7870269)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz096.txt
 description = Eastern Kiowa County, Kiowa County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz096.txt
 station = ('klaa', 0.0076836)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz096.txt
 
@@ -10414,17 +10414,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz096.txt
 centroid = (0.6624415, -1.7989405)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz097.txt
 description = Las Animas Vicinity/Bent County, Bent County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz097.txt
 station = ('klaa', 0.0056845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz097.txt
 
@@ -10432,17 +10432,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz097.txt
 centroid = (0.6624432, -1.7871002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz098.txt
 description = Lamar Vicinity/Prowers County, Prowers County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz098.txt
 station = ('klaa', 0.0044375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz098.txt
 
@@ -10450,17 +10450,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz098.txt
 centroid = (0.6513429, -1.7900184)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/co/coz099.txt
 description = Springfield Vicinity/Baca County, Baca County, CO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/co/coc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/co/coc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/co/coz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/co/coz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/co/coc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/co/coc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/co/coc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/co/coz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/co/coz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz099.txt
 station = ('kspd', 0.0010000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz099.txt
 
@@ -10468,17 +10468,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz099.txt
 centroid = (0.7310329, -1.2784572)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz001.txt
 description = Northern Litchfield County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz001.txt
 station = ('k4b8', 0.0060582)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz001.txt
 
@@ -10486,17 +10486,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz001.txt
 centroid = (0.7296593, -1.2694268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz002.txt
 description = Hartford County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz002.txt
 station = ('khfd', 0.0016697)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz002.txt
 
@@ -10504,17 +10504,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz002.txt
 centroid = (0.7305076, -1.2625101)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz003.txt
 description = Tolland County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz003.txt
 station = ('kijd', 0.0027073)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz003.txt
 
@@ -10522,17 +10522,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz003.txt
 centroid = (0.7300712, -1.2564189)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz004.txt
 description = Windham County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz004.txt
 station = ('kijd', 0.0029058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz004.txt
 
@@ -10540,17 +10540,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz004.txt
 centroid = (0.7217460, -1.2804242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz005.txt
 description = Northern Fairfield County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz005.txt
 station = ('kdxr', 0.0015956)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz005.txt
 
@@ -10558,17 +10558,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz005.txt
 centroid = (0.7236973, -1.2740136)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz006.txt
 description = Northern New Haven County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz006.txt
 station = ('kmmk', 0.0023065)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz006.txt
 
@@ -10576,17 +10576,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz006.txt
 centroid = (0.7242715, -1.2663254)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz007.txt
 description = Northern Middlesex County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz007.txt
 station = ('ksnc', 0.0020883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz007.txt
 
@@ -10594,17 +10594,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz007.txt
 centroid = (0.7248649, -1.2583684)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz008.txt
 description = Northern New London County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz008.txt
 station = ('kgon', 0.0035215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz008.txt
 
@@ -10612,17 +10612,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz008.txt
 centroid = (0.7178557, -1.2816825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz009.txt
 description = Southern Fairfield County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz009.txt
 station = ('kbdr', 0.0040157)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz009.txt
 
@@ -10630,17 +10630,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz009.txt
 centroid = (0.7210095, -1.2708685)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz010.txt
 description = Southern New Haven County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz010.txt
 station = ('khvn', 0.0011777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz010.txt
 
@@ -10648,17 +10648,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz010.txt
 centroid = (0.7211892, -1.2644876)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz011.txt
 description = Southern Middlesex County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz011.txt
 station = ('ksnc', 0.0013190)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz011.txt
 
@@ -10666,17 +10666,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz011.txt
 centroid = (0.7218944, -1.2584417)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz012.txt
 description = Southern New London County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz012.txt
 station = ('kgon', 0.0008551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz012.txt
 
@@ -10684,17 +10684,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz012.txt
 centroid = (0.7266574, -1.2782233)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ct/ctz013.txt
 description = Southern Litchfield County, CT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ct/ctc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ct/ctc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ct/ctz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ct/ctz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ct/ctc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ct/ctc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ct/ctc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ct/ctz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ct/ctz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz013.txt
 station = ('koxc', 0.0029627)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz013.txt
 
@@ -10702,17 +10702,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz013.txt
 centroid = (0.6790954, -1.3441583)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/dc/dcz001.txt
 description = District of Columbia County, DC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/dc/dcz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/dc/dcz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/dc/dcc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/dc/dcc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/dc/dcz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/dc/dcz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/dc/dcz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/dc/dcz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/dc/dcz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/dc/dcc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/dc/dcc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/dc/dcc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/dc/dcz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/dc/dcz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/dc/dcz001.txt
 station = ('kdca', 0.0010658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/dc/dcc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/dc/dcz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/dc/dcz001.txt
 
@@ -10720,17 +10720,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/dc/dcz001.txt
 centroid = (0.6908188, -1.3203224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/de/dez001.txt
 description = New Castle County, DE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dez001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dez001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dec003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dec003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/de/dez001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/de/dez001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dez001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dez001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dez001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dec003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dec003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dec003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/de/dez001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/de/dez001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez001.txt
 station = ('kilg', 0.0016333)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez001.txt
 
@@ -10738,17 +10738,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez001.txt
 centroid = (0.6821916, -1.3189244)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/de/dez002.txt
 description = Kent County, DE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dez002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dez002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dec001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dec001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/de/dez002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/de/dez002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dez002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dez002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dez002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dec001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dec001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dec001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/de/dez002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/de/dez002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez002.txt
 station = ('kdov', 0.0016049)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez002.txt
 
@@ -10756,17 +10756,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez002.txt
 centroid = (0.6748368, -1.3162942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/de/dez003.txt
 description = Inland Sussex County, DE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dez003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dez003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/de/dez003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/de/dez003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dez003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dez003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dez003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/de/dez003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/de/dez003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez003.txt
 station = ('kged', 0.0007683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez003.txt
 
@@ -10774,17 +10774,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez003.txt
 centroid = (0.6738961, -1.3106009)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/de/dez004.txt
 description = Delaware Beaches, Sussex County, DE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dez004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dez004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/de/dec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/de/dec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/de/dez004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/de/dez004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dez004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dez004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dez004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/de/dec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/de/dec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/de/dec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/de/dez004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/de/dez004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez004.txt
 station = ('kged', 0.0039502)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez004.txt
 
@@ -10792,17 +10792,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez004.txt
 centroid = (0.5384323, -1.5047059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz007.txt
 description = North Walton County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz007.txt
 station = ('k54j', 0.0022672)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz007.txt
 
@@ -10810,17 +10810,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz007.txt
 centroid = (0.5339451, -1.5029327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz008.txt
 description = Central Walton County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz008.txt
 station = ('k54j', 0.0024904)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz008.txt
 
@@ -10828,17 +10828,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz008.txt
 centroid = (0.5387465, -1.4977421)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz009.txt
 description = Holmes County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz009.txt
 station = ('kbcr', 0.0032118)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz009.txt
 
@@ -10846,17 +10846,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz009.txt
 centroid = (0.5342575, -1.4951415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz010.txt
 description = Washington County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz010.txt
 station = ('kbcr', 0.0041799)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz010.txt
 
@@ -10864,17 +10864,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz010.txt
 centroid = (0.5374846, -1.4873591)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz011.txt
 description = Jackson County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz011.txt
 station = ('kmai', 0.0008520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz011.txt
 
@@ -10882,17 +10882,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz011.txt
 centroid = (0.5299867, -1.4929686)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz012.txt
 description = Inland Bay County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz012.txt
 station = ('kecp', 0.0038970)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz012.txt
 
@@ -10900,17 +10900,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz012.txt
 centroid = (0.5306866, -1.4869717)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz013.txt
 description = Calhoun County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz013.txt
 station = ('kmai', 0.0074595)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz013.txt
 
@@ -10918,17 +10918,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz013.txt
 centroid = (0.5237785, -1.4872125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz014.txt
 description = Inland Gulf County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz014.txt
 station = ('kaaf', 0.0056584)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz014.txt
 
@@ -10936,17 +10936,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz014.txt
 centroid = (0.5226598, -1.4811789)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz015.txt
 description = Inland Franklin County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz015.txt
 station = ('kaaf', 0.0043651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz015.txt
 
@@ -10954,17 +10954,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz015.txt
 centroid = (0.5337130, -1.4767877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz016.txt
 description = Gadsden County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz016.txt
 station = ('k2j9', 0.0009043)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz016.txt
 
@@ -10972,17 +10972,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz016.txt
 centroid = (0.5315941, -1.4709268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz017.txt
 description = Leon County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz017.txt
 station = ('ktlh', 0.0014851)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz017.txt
 
@@ -10990,17 +10990,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz017.txt
 centroid = (0.5315889, -1.4640956)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz018.txt
 description = Inland Jefferson County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz018.txt
 station = ('ktlh', 0.0070479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz018.txt
 
@@ -11008,17 +11008,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz018.txt
 centroid = (0.5313515, -1.4568263)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz019.txt
 description = Madison County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz019.txt
 station = ('kvld', 0.0066605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz019.txt
 
@@ -11026,17 +11026,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz019.txt
 centroid = (0.5270126, -1.4484749)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz021.txt
 description = Suwannee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz021.txt
 station = ('k24j', 0.0018913)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz021.txt
 
@@ -11044,17 +11044,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz021.txt
 centroid = (0.5293758, -1.4361372)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz023.txt
 description = Baker County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz023.txt
 station = ('klcq', 0.0051167)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz023.txt
 
@@ -11062,17 +11062,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz023.txt
 centroid = (0.5342366, -1.4278277)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz024.txt
 description = Inland Nassau County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz024.txt
 station = ('kjax', 0.0025123)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz024.txt
 
@@ -11080,17 +11080,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz024.txt
 centroid = (0.5278120, -1.4814861)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz026.txt
 description = Liberty County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz026.txt
 station = ('k2j9', 0.0079186)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz026.txt
 
@@ -11098,17 +11098,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz026.txt
 centroid = (0.5271191, -1.4738852)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz027.txt
 description = Inland Wakulla County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz027.txt
 station = ('ktlh', 0.0037593)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz027.txt
 
@@ -11116,17 +11116,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz027.txt
 centroid = (0.5252638, -1.4586886)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz028.txt
 description = Inland Taylor County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz028.txt
 station = ('kfpy', 0.0004593)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz028.txt
 
@@ -11134,17 +11134,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz028.txt
 centroid = (0.5233457, -1.4517841)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz029.txt
 description = Lafayette County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz029.txt
 station = ('k24j', 0.0059768)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz029.txt
 
@@ -11152,17 +11152,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz029.txt
 centroid = (0.5243650, -1.4376521)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz030.txt
 description = Union County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz030.txt
 station = ('klcq', 0.0039288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz030.txt
 
@@ -11170,17 +11170,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz030.txt
 centroid = (0.5227296, -1.4341178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz031.txt
 description = Bradford County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz031.txt
 station = ('k42j', 0.0025999)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz031.txt
 
@@ -11188,17 +11188,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz031.txt
 centroid = (0.5212792, -1.4224067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz033.txt
 description = Inland St. Johns County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz033.txt
 station = ('ksgj', 0.0028824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz033.txt
 
@@ -11206,17 +11206,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz033.txt
 centroid = (0.5178584, -1.4507788)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz034.txt
 description = Inland Dixie County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz034.txt
 station = ('kcty', 0.0007494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz034.txt
 
@@ -11224,17 +11224,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz034.txt
 centroid = (0.5188148, -1.4451413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz035.txt
 description = Gilchrist County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz035.txt
 station = ('kcty', 0.0048203)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz035.txt
 
@@ -11242,17 +11242,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz035.txt
 centroid = (0.5139977, -1.4194868)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz038.txt
 description = Inland Flagler County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz038.txt
 station = ('kfin', 0.0019135)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz038.txt
 
@@ -11260,17 +11260,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz038.txt
 centroid = (0.5072311, -1.4185268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz041.txt
 description = Inland Volusia County, Volusia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz041.txt
 station = ('kded', 0.0001505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz041.txt
 
@@ -11278,17 +11278,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz041.txt
 centroid = (0.5009898, -1.4325837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz043.txt
 description = Sumter County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz043.txt
 station = ('kinf', 0.0040212)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz043.txt
 
@@ -11296,17 +11296,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz043.txt
 centroid = (0.5049464, -1.4247140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz044.txt
 description = Northern Lake County, Lake County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz044.txt
 station = ('klee', 0.0034833)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz044.txt
 
@@ -11314,17 +11314,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz044.txt
 centroid = (0.4976771, -1.4193681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz045.txt
 description = Orange County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz045.txt
 station = ('korl', 0.0006315)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz045.txt
 
@@ -11332,17 +11332,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz045.txt
 centroid = (0.5012062, -1.4178392)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz046.txt
 description = Seminole County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz046.txt
 station = ('ksfb', 0.0011768)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz046.txt
 
@@ -11350,17 +11350,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz046.txt
 centroid = (0.4874408, -1.4437695)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz050.txt
 description = Pinellas County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz050.txt
 station = ('kpie', 0.0006285)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz050.txt
 
@@ -11368,17 +11368,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz050.txt
 centroid = (0.4878003, -1.4258956)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz052.txt
 description = Polk County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz052.txt
 station = ('kbow', 0.0013189)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz052.txt
 
@@ -11386,17 +11386,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz052.txt
 centroid = (0.4897865, -1.4163260)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz053.txt
 description = Osceola County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz053.txt
 station = ('kism', 0.0059409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz053.txt
 
@@ -11404,17 +11404,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz053.txt
 centroid = (0.4798381, -1.4278521)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz056.txt
 description = Hardee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz056.txt
 station = ('kx07', 0.0075884)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz056.txt
 
@@ -11422,17 +11422,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz056.txt
 centroid = (0.4772324, -1.4196665)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz057.txt
 description = Highlands County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz057.txt
 station = ('ksef', 0.0019724)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz057.txt
 
@@ -11440,17 +11440,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz057.txt
 centroid = (0.4787141, -1.4119975)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz058.txt
 description = Okeechobee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz058.txt
 station = ('kobe', 0.0029295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz058.txt
 
@@ -11458,17 +11458,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz058.txt
 centroid = (0.4744904, -1.4278416)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz061.txt
 description = De Soto, DeSoto County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz061.txt
 station = ('kpgd', 0.0055617)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz061.txt
 
@@ -11476,17 +11476,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz061.txt
 centroid = (0.4705495, -1.4179002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz063.txt
 description = Glades County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz063.txt
 station = ('kobe', 0.0080686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz063.txt
 
@@ -11494,17 +11494,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz063.txt
 centroid = (0.4633378, -1.4167152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz066.txt
 description = Hendry County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz066.txt
 station = ('kimm', 0.0041766)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz066.txt
 
@@ -11512,17 +11512,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz066.txt
 centroid = (0.4645578, -1.4051803)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz067.txt
 description = Inland Palm Beach County, Palm Beach County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz067.txt
 station = ('kf45', 0.0060086)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz067.txt
 
@@ -11530,17 +11530,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz067.txt
 centroid = (0.4646450, -1.3988186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz068.txt
 description = Metro Palm Beach County, Palm Beach County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz068.txt
 station = ('klna', 0.0010839)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz068.txt
 
@@ -11548,17 +11548,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz068.txt
 centroid = (0.4540474, -1.4242183)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz069.txt
 description = Coastal Collier County, Collier County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz069.txt
 station = ('kmky', 0.0011642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz069.txt
 
@@ -11566,17 +11566,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz069.txt
 centroid = (0.4561942, -1.4188305)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz070.txt
 description = Inland Collier County, Collier County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz070.txt
 station = ('kimm', 0.0053477)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz070.txt
 
@@ -11584,17 +11584,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz070.txt
 centroid = (0.4566340, -1.4069884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz071.txt
 description = Inland Broward County, Broward County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz071.txt
 station = ('khwo', 0.0066194)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz071.txt
 
@@ -11602,17 +11602,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz071.txt
 centroid = (0.4559795, -1.4009863)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz072.txt
 description = Metro Broward County, Broward County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz072.txt
 station = ('kfxe', 0.0018843)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz072.txt
 
@@ -11620,17 +11620,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz072.txt
 centroid = (0.4484240, -1.4081072)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz073.txt
 description = Inland Miami-Dade County, Miami-Dade County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc086.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc086.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc086.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc086.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc086.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz073.txt
 station = ('ktmb', 0.0039298)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz073.txt
 
@@ -11638,17 +11638,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz073.txt
 centroid = (0.4499284, -1.4025501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz074.txt
 description = Metropolitan Miami Dade, Miami-Dade County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc086.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc086.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc086.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc086.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc086.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz074.txt
 station = ('kmia', 0.0006883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz074.txt
 
@@ -11656,17 +11656,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz074.txt
 centroid = (0.4454168, -1.4142857)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz075.txt
 description = Mainland Monroe County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz075.txt
 station = ('khst', 0.0102483)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz075.txt
 
@@ -11674,17 +11674,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz075.txt
 centroid = (0.4389014, -1.4035851)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz076.txt
 description = Monroe Upper Keys, Upper Keys in Monroe County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz076.txt
 station = ('khst', 0.0058943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz076.txt
 
@@ -11692,17 +11692,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz076.txt
 centroid = (0.4319184, -1.4135003)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz077.txt
 description = Monroe Middle Keys, Middle Keys in Monroe County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz077.txt
 station = ('kmth', 0.0010179)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz077.txt
 
@@ -11710,17 +11710,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz077.txt
 centroid = (0.4302481, -1.4233631)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz078.txt
 description = Monroe Lower Keys, Lower Keys in Monroe County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz078.txt
 station = ('knqx', 0.0023891)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz078.txt
 
@@ -11728,17 +11728,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz078.txt
 centroid = (0.5308995, -1.5039677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz108.txt
 description = South Walton County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz108.txt
 station = ('kdts', 0.0044619)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz108.txt
 
@@ -11746,17 +11746,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz108.txt
 centroid = (0.5274612, -1.4951433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz112.txt
 description = Coastal Bay County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz112.txt
 station = ('kpam', 0.0029695)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz112.txt
 
@@ -11764,17 +11764,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz112.txt
 centroid = (0.5204101, -1.4882876)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz114.txt
 description = Coastal Gulf County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz114.txt
 station = ('kaaf', 0.0041449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz114.txt
 
@@ -11782,17 +11782,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz114.txt
 centroid = (0.5207748, -1.4798629)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz115.txt
 description = Coastal Franklin County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz115.txt
 station = ('kaaf', 0.0038921)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz115.txt
 
@@ -11800,17 +11800,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz115.txt
 centroid = (0.5261766, -1.4664623)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz118.txt
 description = Coastal Jefferson County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz118.txt
 station = ('ktlh', 0.0066196)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz118.txt
 
@@ -11818,17 +11818,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz118.txt
 centroid = (0.5322242, -1.4460960)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz120.txt
 description = Eastern Hamilton County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz120.txt
 station = ('k24j', 0.0042411)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz120.txt
 
@@ -11836,17 +11836,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz120.txt
 centroid = (0.5342366, -1.4278277)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz124.txt
 description = Coastal Nassau County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz124.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz124.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz124.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz124.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz124.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz124.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz124.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz124.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz124.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz124.txt
 station = ('kjax', 0.0025123)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz124.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz124.txt
 
@@ -11854,17 +11854,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz124.txt
 centroid = (0.5297423, -1.4229006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz125.txt
 description = Coastal Duval County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz125.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz125.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz125.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz125.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz125.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz125.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz125.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz125.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz125.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz125.txt
 station = ('kcrg', 0.0003560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz125.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz125.txt
 
@@ -11872,17 +11872,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz125.txt
 centroid = (0.5252883, -1.4713283)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz127.txt
 description = Coastal Wakulla County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz127.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz127.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz127.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz127.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz127.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz127.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz127.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz127.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz127.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz127.txt
 station = ('ktlh', 0.0053434)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz127.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz127.txt
 
@@ -11890,17 +11890,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz127.txt
 centroid = (0.5223055, -1.4603222)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz128.txt
 description = Coastal Taylor County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz128.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz128.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz128.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz128.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz128.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz128.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz128.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz128.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz128.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz128.txt
 station = ('kfpy', 0.0028465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz128.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz128.txt
 
@@ -11908,17 +11908,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz128.txt
 centroid = (0.5238030, -1.4255710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz132.txt
 description = Eastern Clay County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz132.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz132.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz132.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz132.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz132.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz132.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz132.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz132.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz132.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz132.txt
 station = ('knip', 0.0038729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz132.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz132.txt
 
@@ -11926,17 +11926,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz132.txt
 centroid = (0.5227697, -1.4200505)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz133.txt
 description = Coastal St. Johns County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz133.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz133.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz133.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz133.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz133.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz133.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz133.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz133.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz133.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz133.txt
 station = ('ksgj', 0.0003693)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz133.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz133.txt
 
@@ -11944,17 +11944,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz133.txt
 centroid = (0.5147395, -1.4525520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz134.txt
 description = Coastal Dixie County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz134.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz134.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz134.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz134.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz134.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz134.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz134.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz134.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz134.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz134.txt
 station = ('kcty', 0.0031076)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz134.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz134.txt
 
@@ -11962,17 +11962,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz134.txt
 centroid = (0.5181813, -1.4358195)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz136.txt
 description = Eastern Alachua County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz136.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz136.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz136.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz136.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz136.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz136.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz136.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz136.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz136.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz136.txt
 station = ('kgnv', 0.0003144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz136.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz136.txt
 
@@ -11980,17 +11980,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz136.txt
 centroid = (0.5157413, -1.4243981)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz137.txt
 description = Eastern Putnam County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz137.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz137.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz137.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz137.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz137.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz137.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz137.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz137.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz137.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz137.txt
 station = ('k28j', 0.0022289)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz137.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz137.txt
 
@@ -11998,17 +11998,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz137.txt
 centroid = (0.5156331, -1.4169892)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz138.txt
 description = Coastal Flagler County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz138.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz138.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz138.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz138.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz138.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz138.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz138.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz138.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz138.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz138.txt
 station = ('kfin', 0.0013603)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz138.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz138.txt
 
@@ -12016,17 +12016,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz138.txt
 centroid = (0.5117585, -1.4440592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz139.txt
 description = Coastal Levy County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz139.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz139.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz139.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz139.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz139.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz139.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz139.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz139.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz139.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz139.txt
 station = ('kx60', 0.0040809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz139.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz139.txt
 
@@ -12034,17 +12034,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz139.txt
 centroid = (0.5099328, -1.4276043)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz140.txt
 description = Eastern Marion County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz140.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz140.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz140.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz140.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz140.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz140.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz140.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz140.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz140.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz140.txt
 station = ('klee', 0.0069945)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz140.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz140.txt
 
@@ -12052,17 +12052,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz140.txt
 centroid = (0.5071264, -1.4135544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz141.txt
 description = Coastal Volusia County, Volusia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz141.txt
 station = ('kevb', 0.0006465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz141.txt
 
@@ -12070,17 +12070,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz141.txt
 centroid = (0.5035397, -1.4393259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz142.txt
 description = Coastal Citrus County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz142.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz142.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz142.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz142.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz142.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz142.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz142.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz142.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz142.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz142.txt
 station = ('kcgc', 0.0016114)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz142.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz142.txt
 
@@ -12088,17 +12088,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz142.txt
 centroid = (0.4985254, -1.4277858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz144.txt
 description = Southern Lake County, Lake County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz144.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz144.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz144.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz144.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz144.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz144.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz144.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz144.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz144.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz144.txt
 station = ('klee', 0.0044233)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz144.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz144.txt
 
@@ -12106,17 +12106,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz144.txt
 centroid = (0.4983404, -1.4385161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz148.txt
 description = Coastal Hernando County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz148.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz148.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz148.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz148.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz148.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz148.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz148.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz148.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz148.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz148.txt
 station = ('kbkv', 0.0015682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz148.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz148.txt
 
@@ -12124,17 +12124,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz148.txt
 centroid = (0.4940905, -1.4379977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz149.txt
 description = Inland Pasco County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz149.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz149.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz149.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz149.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz149.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz149.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz149.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz149.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz149.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz149.txt
 station = ('kbkv', 0.0028912)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz149.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz149.txt
 
@@ -12142,17 +12142,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz149.txt
 centroid = (0.4874548, -1.4394935)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz151.txt
 description = Coastal Hillsborough County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz151.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz151.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz151.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz151.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz151.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz151.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz151.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz151.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz151.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz151.txt
 station = ('ktpf', 0.0004887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz151.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz151.txt
 
@@ -12160,17 +12160,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz151.txt
 centroid = (0.4832328, -1.4042029)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz154.txt
 description = Coastal Indian River County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz154.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz154.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz154.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz154.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz154.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz154.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz154.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz154.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz154.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz154.txt
 station = ('kvrb', 0.0008780)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz154.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz154.txt
 
@@ -12178,17 +12178,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz154.txt
 centroid = (0.4794646, -1.4363676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz155.txt
 description = Coastal Manatee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz155.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz155.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz155.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz155.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz155.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz155.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz155.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz155.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz155.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz155.txt
 station = ('ksrq', 0.0041001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz155.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz155.txt
 
@@ -12196,17 +12196,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz155.txt
 centroid = (0.4781591, -1.4022394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz159.txt
 description = Coastal St. Lucie County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz159.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz159.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz159.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz159.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz159.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz159.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz159.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz159.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz159.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz159.txt
 station = ('kfpr', 0.0019144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz159.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz159.txt
 
@@ -12214,17 +12214,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz159.txt
 centroid = (0.4743910, -1.4367882)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz160.txt
 description = Coastal Sarasota County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz160.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz160.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz160.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz160.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz160.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz160.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz160.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz160.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz160.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz160.txt
 station = ('kvnc', 0.0026461)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz160.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz160.txt
 
@@ -12232,17 +12232,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz160.txt
 centroid = (0.4696995, -1.4331509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz162.txt
 description = Coastal Charlotte County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz162.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz162.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz162.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz162.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz162.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz162.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz162.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz162.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz162.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz162.txt
 station = ('kpgd', 0.0017684)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz162.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz162.txt
 
@@ -12250,17 +12250,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz162.txt
 centroid = (0.4730540, -1.3997785)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz164.txt
 description = Coastal Martin County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz164.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz164.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz164.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz164.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz164.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz164.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz164.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz164.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz164.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz164.txt
 station = ('ksua', 0.0013897)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz164.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz164.txt
 
@@ -12268,17 +12268,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz164.txt
 centroid = (0.4644932, -1.4292536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz165.txt
 description = Coastal Lee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz165.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz165.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz165.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz165.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz165.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz165.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz165.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz165.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz165.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz165.txt
 station = ('kfmy', 0.0006419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz165.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz165.txt
 
@@ -12286,17 +12286,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz165.txt
 centroid = (0.4660954, -1.3976701)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz168.txt
 description = Coastal Palm Beach County, Palm Beach County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz168.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz168.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz168.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz168.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz168.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz168.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz168.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz168.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz168.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz168.txt
 station = ('kpbi', 0.0004884)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz168.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz168.txt
 
@@ -12304,17 +12304,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz168.txt
 centroid = (0.4564001, -1.3984730)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz172.txt
 description = Coastal Broward County, Broward County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz172.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz172.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz172.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz172.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz172.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz172.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz172.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz172.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz172.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz172.txt
 station = ('kfxe', 0.0012479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz172.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz172.txt
 
@@ -12322,17 +12322,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz172.txt
 centroid = (0.4464814, -1.4017036)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz173.txt
 description = Coastal Miami Dade County, Miami-Dade County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz173.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz173.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc086.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc086.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz173.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz173.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz173.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz173.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz173.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc086.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc086.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc086.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz173.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz173.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz173.txt
 station = ('khst', 0.0020514)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz173.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz173.txt
 
@@ -12340,17 +12340,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz173.txt
 centroid = (0.4415508, -1.4076028)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz174.txt
 description = Far South Miami-Dade County, Miami-Dade County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz174.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz174.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc086.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc086.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz174.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz174.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz174.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz174.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz174.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc086.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc086.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc086.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz174.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz174.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz174.txt
 station = ('khst', 0.0052905)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz174.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz174.txt
 
@@ -12358,17 +12358,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz174.txt
 centroid = (0.5388268, -1.5259833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz201.txt
 description = Escambia Inland, Escambia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz201.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz201.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz201.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz201.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz201.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz201.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz201.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz201.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz201.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz201.txt
 station = ('kndz', 0.0069224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz201.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz201.txt
 
@@ -12376,17 +12376,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz201.txt
 centroid = (0.5325000, -1.5239622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz202.txt
 description = Escambia Coastal, Escambia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz202.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz202.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz202.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz202.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz202.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz202.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz202.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz202.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz202.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz202.txt
 station = ('kpns', 0.0020575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz202.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz202.txt
 
@@ -12394,17 +12394,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz202.txt
 centroid = (0.5384393, -1.5190648)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz203.txt
 description = Santa Rosa Inland, Santa Rosa County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz203.txt
 station = ('knse', 0.0020619)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz203.txt
 
@@ -12412,17 +12412,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz203.txt
 centroid = (0.5336973, -1.5183108)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz204.txt
 description = Santa Rosa Coastal, Santa Rosa County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz204.txt
 station = ('kndz', 0.0021489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz204.txt
 
@@ -12430,17 +12430,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz204.txt
 centroid = (0.5384637, -1.5112701)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz205.txt
 description = Okaloosa Inland, Okaloosa County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz205.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz205.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz205.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz205.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz205.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz205.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz205.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz205.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz205.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz205.txt
 station = ('kcew', 0.0018416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz205.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz205.txt
 
@@ -12448,17 +12448,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz205.txt
 centroid = (0.5334250, -1.5115145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz206.txt
 description = Okaloosa Coastal, Okaloosa County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz206.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz206.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz206.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz206.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz206.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz206.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz206.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz206.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz206.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz206.txt
 station = ('kvps', 0.0019062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz206.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz206.txt
 
@@ -12466,17 +12466,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz206.txt
 centroid = (0.5323307, -1.4506897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz220.txt
 description = Western Hamilton County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz220.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz220.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz220.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz220.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz220.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz220.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz220.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz220.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz220.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz220.txt
 station = ('k24j', 0.0037681)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz220.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz220.txt
 
@@ -12484,17 +12484,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz220.txt
 centroid = (0.5308052, -1.4262551)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz225.txt
 description = Trout River, Duval County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz225.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz225.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz225.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz225.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz225.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz225.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz225.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz225.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz225.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz225.txt
 station = ('kjax', 0.0015452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz225.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz225.txt
 
@@ -12502,17 +12502,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz225.txt
 centroid = (0.5232200, -1.4292170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz232.txt
 description = Western Clay County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz232.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz232.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz232.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz232.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz232.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz232.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz232.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz232.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz232.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz232.txt
 station = ('k42j', 0.0033541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz232.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz232.txt
 
@@ -12520,17 +12520,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz232.txt
 centroid = (0.5174587, -1.4402981)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz236.txt
 description = Western Alachua County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz236.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz236.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz236.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz236.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz236.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz236.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz236.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz236.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz236.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz236.txt
 station = ('kgnv', 0.0037452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz236.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz236.txt
 
@@ -12538,17 +12538,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz236.txt
 centroid = (0.5175914, -1.4285555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz237.txt
 description = Western Putnam County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz237.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz237.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz237.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz237.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz237.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz237.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz237.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz237.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz237.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz237.txt
 station = ('k28j', 0.0024469)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz237.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz237.txt
 
@@ -12556,17 +12556,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz237.txt
 centroid = (0.5117585, -1.4440592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz239.txt
 description = Inland Levy County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz239.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz239.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz239.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz239.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz239.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz239.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz239.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz239.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz239.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz239.txt
 station = ('kx60', 0.0040809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz239.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz239.txt
 
@@ -12574,17 +12574,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz239.txt
 centroid = (0.5100428, -1.4320374)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz240.txt
 description = Central Marion County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz240.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz240.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz240.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz240.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz240.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz240.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz240.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz240.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz240.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz240.txt
 station = ('kocf', 0.0027292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz240.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz240.txt
 
@@ -12592,17 +12592,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz240.txt
 centroid = (0.5035397, -1.4393259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz242.txt
 description = inland Citrus County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz242.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz242.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz242.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz242.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz242.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz242.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz242.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz242.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz242.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz242.txt
 station = ('kcgc', 0.0016114)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz242.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz242.txt
 
@@ -12610,17 +12610,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz242.txt
 centroid = (0.4993247, -1.4119836)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz247.txt
 description = Inland Northern Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz247.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz247.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz247.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz247.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz247.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz247.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz247.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz247.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz247.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz247.txt
 station = ('ktix', 0.0022341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz247.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz247.txt
 
@@ -12628,17 +12628,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz247.txt
 centroid = (0.4983404, -1.4385161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz248.txt
 description = Inland Hernando County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz248.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz248.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz248.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz248.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz248.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz248.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz248.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz248.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz248.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz248.txt
 station = ('kbkv', 0.0015682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz248.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz248.txt
 
@@ -12646,17 +12646,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz248.txt
 centroid = (0.4940905, -1.4379977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz249.txt
 description = Coastal Pasco County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz249.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz249.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz249.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz249.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz249.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz249.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz249.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz249.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz249.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz249.txt
 station = ('kbkv', 0.0028912)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz249.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz249.txt
 
@@ -12664,17 +12664,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz249.txt
 centroid = (0.4874897, -1.4354792)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz251.txt
 description = Inland Hillsborough County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz251.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz251.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz251.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz251.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz251.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz251.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz251.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz251.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz251.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz251.txt
 station = ('kpcm', 0.0019176)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz251.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz251.txt
 
@@ -12682,17 +12682,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz251.txt
 centroid = (0.4833777, -1.4083132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz254.txt
 description = Inland Indian River County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz254.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz254.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz254.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz254.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz254.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz254.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz254.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz254.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz254.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz254.txt
 station = ('kx26', 0.0036334)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz254.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz254.txt
 
@@ -12700,17 +12700,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz254.txt
 centroid = (0.4794646, -1.4363676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz255.txt
 description = Inland Manatee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz255.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz255.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz255.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz255.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz255.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz255.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz255.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz255.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz255.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz255.txt
 station = ('ksrq', 0.0041001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz255.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz255.txt
 
@@ -12718,17 +12718,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz255.txt
 centroid = (0.4776861, -1.4055643)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz259.txt
 description = Inland St. Lucie County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz259.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz259.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz259.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz259.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz259.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz259.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz259.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz259.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz259.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz259.txt
 station = ('kfpr', 0.0032501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz259.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz259.txt
 
@@ -12736,17 +12736,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz259.txt
 centroid = (0.4743910, -1.4367882)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz260.txt
 description = Inland Sarasota County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz260.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz260.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz260.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz260.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz260.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz260.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz260.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz260.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz260.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz260.txt
 station = ('kvnc', 0.0026461)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz260.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz260.txt
 
@@ -12754,17 +12754,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz260.txt
 centroid = (0.4695581, -1.4268887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz262.txt
 description = Inland Charlotte County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz262.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz262.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz262.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz262.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz262.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz262.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz262.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz262.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz262.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz262.txt
 station = ('kpgd', 0.0038244)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz262.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz262.txt
 
@@ -12772,17 +12772,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz262.txt
 centroid = (0.4725985, -1.4041418)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz264.txt
 description = Inland Martin County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz264.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz264.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz264.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz264.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz264.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz264.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz264.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz264.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz264.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz264.txt
 station = ('ksua', 0.0040094)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz264.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz264.txt
 
@@ -12790,17 +12790,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz264.txt
 centroid = (0.4638823, -1.4280424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz265.txt
 description = Inland Lee County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz265.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz265.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz265.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz265.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz265.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz265.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz265.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz265.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz265.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz265.txt
 station = ('kfmy', 0.0007209)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz265.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz265.txt
 
@@ -12808,17 +12808,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz265.txt
 centroid = (0.5308297, -1.4414151)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz322.txt
 description = Northern Columbia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz322.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz322.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz322.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz322.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz322.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz322.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz322.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz322.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz322.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz322.txt
 station = ('klcq', 0.0040573)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz322.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz322.txt
 
@@ -12826,17 +12826,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz322.txt
 centroid = (0.5273477, -1.4250386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz325.txt
 description = South Central Duval County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz325.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz325.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz325.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz325.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz325.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz325.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz325.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz325.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz325.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz325.txt
 station = ('knip', 0.0004220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz325.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz325.txt
 
@@ -12844,17 +12844,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz325.txt
 centroid = (0.5094424, -1.4368929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz340.txt
 description = Western Marion County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz340.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz340.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz340.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz340.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz340.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz340.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz340.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz340.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz340.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz340.txt
 station = ('kocf', 0.0017389)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz340.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz340.txt
 
@@ -12862,17 +12862,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz340.txt
 centroid = (0.4989233, -1.4106885)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz347.txt
 description = Mainland Northern Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz347.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz347.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz347.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz347.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz347.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz347.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz347.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz347.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz347.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz347.txt
 station = ('ktix', 0.0012798)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz347.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz347.txt
 
@@ -12880,17 +12880,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz347.txt
 centroid = (0.5261696, -1.4411725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz422.txt
 description = Southeastern Columbia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz422.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz422.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz422.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz422.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz422.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz422.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz422.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz422.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz422.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz422.txt
 station = ('klcq', 0.0006083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz422.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz422.txt
 
@@ -12898,17 +12898,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz422.txt
 centroid = (0.5294701, -1.4283565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz425.txt
 description = Western Duval County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz425.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz425.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz425.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz425.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz425.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz425.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz425.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz425.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz425.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz425.txt
 station = ('kheg', 0.0011366)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz425.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz425.txt
 
@@ -12916,17 +12916,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz425.txt
 centroid = (0.4986179, -1.4080112)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz447.txt
 description = Northern Brevard Barrier Islands, Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz447.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz447.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz447.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz447.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz447.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz447.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz447.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz447.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz447.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz447.txt
 station = ('ktts', 0.0009332)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz447.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz447.txt
 
@@ -12934,17 +12934,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz447.txt
 centroid = (0.5240595, -1.4434082)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz522.txt
 description = Southwestern Columbia County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz522.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz522.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz522.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz522.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz522.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz522.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz522.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz522.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz522.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz522.txt
 station = ('klcq', 0.0033012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz522.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz522.txt
 
@@ -12952,17 +12952,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz522.txt
 centroid = (0.4895753, -1.4095872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz547.txt
 description = Inland Southern Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz547.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz547.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz547.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz547.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz547.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz547.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz547.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz547.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz547.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz547.txt
 station = ('kmlb', 0.0019476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz547.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz547.txt
 
@@ -12970,17 +12970,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz547.txt
 centroid = (0.4903311, -1.4074929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz647.txt
 description = Mainland Southern Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz647.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz647.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz647.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz647.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz647.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz647.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz647.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz647.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz647.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz647.txt
 station = ('kmlb', 0.0001472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz647.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz647.txt
 
@@ -12988,17 +12988,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz647.txt
 centroid = (0.4927937, -1.4070268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/fl/flz747.txt
 description = Southern Brevard Barrier Islands, Brevard County, FL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flz747.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flz747.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/fl/flc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/fl/flc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/fl/flz747.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/fl/flz747.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flz747.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flz747.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flz747.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/fl/flc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/fl/flc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/fl/flc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/fl/flz747.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/fl/flz747.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz747.txt
 station = ('kcof', 0.0002584)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz747.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz747.txt
 
@@ -13006,17 +13006,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz747.txt
 centroid = (0.6083275, -1.4923351)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz001.txt
 description = Dade County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz001.txt
 station = ('k9a5', 0.0042209)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz001.txt
 
@@ -13024,17 +13024,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz001.txt
 centroid = (0.6062506, -1.4887816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz002.txt
 description = Walker County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac295.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac295.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac295.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac295.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac295.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz002.txt
 station = ('k9a5', 0.0008341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac295.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz002.txt
 
@@ -13042,17 +13042,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz002.txt
 centroid = (0.6091827, -1.4859402)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz003.txt
 description = Catoosa County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz003.txt
 station = ('kcha', 0.0024312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz003.txt
 
@@ -13060,17 +13060,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz003.txt
 centroid = (0.6074723, -1.4829591)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz004.txt
 description = Whitfield County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac313.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac313.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac313.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac313.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac313.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz004.txt
 station = ('kdnn', 0.0020312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac313.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz004.txt
 
@@ -13078,17 +13078,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz004.txt
 centroid = (0.6071739, -1.4791334)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz005.txt
 description = Murray County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac213.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac213.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac213.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac213.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac213.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz005.txt
 station = ('kdnn', 0.0020915)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac213.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz005.txt
 
@@ -13096,17 +13096,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz005.txt
 centroid = (0.6084933, -1.4716564)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz006.txt
 description = Fannin County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz006.txt
 station = ('k49a', 0.0050651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz006.txt
 
@@ -13114,17 +13114,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz006.txt
 centroid = (0.6054809, -1.4740248)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz007.txt
 description = Gilmer County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz007.txt
 station = ('k49a', 0.0014926)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz007.txt
 
@@ -13132,17 +13132,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz007.txt
 centroid = (0.6079715, -1.4659143)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz008.txt
 description = Union County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac291.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac291.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac291.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac291.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac291.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz008.txt
 station = ('kdzj', 0.0003754)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac291.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz008.txt
 
@@ -13150,17 +13150,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz008.txt
 centroid = (0.6094114, -1.4614916)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz009.txt
 description = Towns County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac281.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac281.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac281.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac281.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac281.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz009.txt
 station = ('kdzj', 0.0038691)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac281.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz009.txt
 
@@ -13168,17 +13168,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz009.txt
 centroid = (0.6088023, -1.4556412)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz010.txt
 description = Rabun County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac241.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac241.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac241.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac241.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac241.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz010.txt
 station = ('ktoc', 0.0052527)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac241.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz010.txt
 
@@ -13186,17 +13186,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz010.txt
 centroid = (0.6017023, -1.4895582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz011.txt
 description = Chattooga County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz011.txt
 station = ('krmg', 0.0033738)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz011.txt
 
@@ -13204,17 +13204,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz011.txt
 centroid = (0.6021979, -1.4813604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz012.txt
 description = Gordon County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz012.txt
 station = ('kczl', 0.0012396)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz012.txt
 
@@ -13222,17 +13222,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz012.txt
 centroid = (0.6015155, -1.4742028)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz013.txt
 description = Pickens County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac227.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac227.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac227.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac227.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac227.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz013.txt
 station = ('kjzp', 0.0002239)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac227.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz013.txt
 
@@ -13240,17 +13240,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz013.txt
 centroid = (0.6011577, -1.4690506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz014.txt
 description = Dawson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz014.txt
 station = ('kcni', 0.0043288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz014.txt
 
@@ -13258,17 +13258,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz014.txt
 centroid = (0.6033970, -1.4661307)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz015.txt
 description = Lumpkin County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz015.txt
 station = ('kdzj', 0.0049401)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz015.txt
 
@@ -13276,17 +13276,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz015.txt
 centroid = (0.6046938, -1.4616644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz016.txt
 description = White County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac311.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac311.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac311.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac311.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac311.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz016.txt
 station = ('kajr', 0.0037460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac311.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz016.txt
 
@@ -13294,17 +13294,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz016.txt
 centroid = (0.6044250, -1.4578945)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz017.txt
 description = Habersham County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz017.txt
 station = ('kajr', 0.0023173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz017.txt
 
@@ -13312,17 +13312,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz017.txt
 centroid = (0.6030811, -1.4537458)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz018.txt
 description = Stephens County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac257.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac257.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac257.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac257.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac257.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz018.txt
 station = ('ktoc', 0.0006954)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac257.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz018.txt
 
@@ -13330,17 +13330,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz018.txt
 centroid = (0.5980057, -1.4872701)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz019.txt
 description = Floyd County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz019.txt
 station = ('krmg', 0.0016633)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz019.txt
 
@@ -13348,17 +13348,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz019.txt
 centroid = (0.5975641, -1.4807461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz020.txt
 description = Bartow County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz020.txt
 station = ('kvpc', 0.0018302)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz020.txt
 
@@ -13366,17 +13366,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz020.txt
 centroid = (0.5976688, -1.4743913)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz021.txt
 description = Cherokee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz021.txt
 station = ('kcni', 0.0013887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz021.txt
 
@@ -13384,17 +13384,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz021.txt
 centroid = (0.5973477, -1.4682635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz022.txt
 description = Forsyth County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz022.txt
 station = ('kcni', 0.0045558)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz022.txt
 
@@ -13402,17 +13402,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz022.txt
 centroid = (0.5989411, -1.4629297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz023.txt
 description = Hall County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz023.txt
 station = ('kgvl', 0.0008968)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz023.txt
 
@@ -13420,17 +13420,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz023.txt
 centroid = (0.5995922, -1.4573045)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz024.txt
 description = Banks County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz024.txt
 station = ('kajr', 0.0026841)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz024.txt
 
@@ -13438,17 +13438,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz024.txt
 centroid = (0.5957489, -1.4585071)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz025.txt
 description = Jackson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz025.txt
 station = ('kjca', 0.0007045)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz025.txt
 
@@ -13456,17 +13456,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz025.txt
 centroid = (0.5999657, -1.4526236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz026.txt
 description = Franklin County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz026.txt
 station = ('k18a', 0.0015110)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz026.txt
 
@@ -13474,17 +13474,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz026.txt
 centroid = (0.5956442, -1.4522710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz027.txt
 description = Madison County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz027.txt
 station = ('kahn', 0.0035881)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz027.txt
 
@@ -13492,17 +13492,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz027.txt
 centroid = (0.5995398, -1.4479950)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz028.txt
 description = Hart County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz028.txt
 station = ('k18a', 0.0024501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz028.txt
 
@@ -13510,17 +13510,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz028.txt
 centroid = (0.5954522, -1.4458360)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz029.txt
 description = Elbert County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz029.txt
 station = ('keba', 0.0004983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz029.txt
 
@@ -13528,17 +13528,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz029.txt
 centroid = (0.5934434, -1.4868146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz030.txt
 description = Polk County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac233.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac233.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac233.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac233.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac233.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz030.txt
 station = ('kpuj', 0.0038833)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac233.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz030.txt
 
@@ -13546,17 +13546,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz030.txt
 centroid = (0.5920192, -1.4812121)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz031.txt
 description = Paulding County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac223.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac223.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac223.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac223.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac223.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz031.txt
 station = ('kpuj', 0.0010912)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac223.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz031.txt
 
@@ -13564,17 +13564,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz031.txt
 centroid = (0.5923909, -1.4761419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz032.txt
 description = Cobb County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz032.txt
 station = ('kmge', 0.0009714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz032.txt
 
@@ -13582,17 +13582,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz032.txt
 centroid = (0.5922775, -1.4722847)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz033.txt
 description = North Fulton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz033.txt
 station = ('kpdk', 0.0012100)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz033.txt
 
@@ -13600,17 +13600,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz033.txt
 centroid = (0.5927435, -1.4664867)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz034.txt
 description = Gwinnett County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz034.txt
 station = ('klzu', 0.0009279)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz034.txt
 
@@ -13618,17 +13618,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz034.txt
 centroid = (0.5932933, -1.4610622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz035.txt
 description = Barrow County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz035.txt
 station = ('kwdr', 0.0006739)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz035.txt
 
@@ -13636,17 +13636,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz035.txt
 centroid = (0.5925620, -1.4550356)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz036.txt
 description = Clarke County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz036.txt
 station = ('kahn', 0.0004937)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz036.txt
 
@@ -13654,17 +13654,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz036.txt
 centroid = (0.5905304, -1.4562504)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz037.txt
 description = Oconee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac219.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac219.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac219.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac219.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac219.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz037.txt
 station = ('kahn', 0.0025082)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac219.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz037.txt
 
@@ -13672,17 +13672,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz037.txt
 centroid = (0.5913298, -1.4500300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz038.txt
 description = Oglethorpe County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac221.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac221.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac221.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac221.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac221.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz038.txt
 station = ('kahn', 0.0038552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac221.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz038.txt
 
@@ -13690,17 +13690,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz038.txt
 centroid = (0.5896071, -1.4441413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz039.txt
 description = Wilkes County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac317.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac317.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac317.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac317.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac317.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz039.txt
 station = ('kiiy', 0.0010625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac317.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz039.txt
 
@@ -13708,17 +13708,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz039.txt
 centroid = (0.5898096, -1.4390449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz040.txt
 description = Lincoln County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz040.txt
 station = ('khqu', 0.0047066)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz040.txt
 
@@ -13726,17 +13726,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz040.txt
 centroid = (0.5898201, -1.4872125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz041.txt
 description = Haralson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz041.txt
 station = ('kctj', 0.0029744)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz041.txt
 
@@ -13744,17 +13744,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz041.txt
 centroid = (0.5861304, -1.4849209)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz042.txt
 description = Carroll County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz042.txt
 station = ('kctj', 0.0013462)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz042.txt
 
@@ -13762,17 +13762,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz042.txt
 centroid = (0.5882021, -1.4794755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz043.txt
 description = Douglas County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz043.txt
 station = ('kfty', 0.0039132)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz043.txt
 
@@ -13780,17 +13780,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz043.txt
 centroid = (0.5865790, -1.4766620)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz044.txt
 description = South Fulton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz044.txt
 station = ('katl', 0.0026187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz044.txt
 
@@ -13798,17 +13798,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz044.txt
 centroid = (0.5894239, -1.4700263)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz045.txt
 description = De Kalb, DeKalb County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz045.txt
 station = ('kpdk', 0.0022252)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz045.txt
 
@@ -13816,17 +13816,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz045.txt
 centroid = (0.5873818, -1.4665426)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz046.txt
 description = Rockdale County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac247.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac247.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac247.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac247.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac247.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz046.txt
 station = ('kcvc', 0.0026017)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac247.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz046.txt
 
@@ -13834,17 +13834,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz046.txt
 centroid = (0.5896001, -1.4614305)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz047.txt
 description = Walton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac297.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac297.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac297.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac297.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac297.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz047.txt
 station = ('kd73', 0.0005949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac297.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz047.txt
 
@@ -13852,17 +13852,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz047.txt
 centroid = (0.5856470, -1.4634638)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz048.txt
 description = Newton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac217.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac217.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac217.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac217.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac217.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz048.txt
 station = ('kcvc', 0.0013509)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac217.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz048.txt
 
@@ -13870,17 +13870,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz048.txt
 centroid = (0.5862701, -1.4572173)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz049.txt
 description = Morgan County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac211.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac211.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac211.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac211.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac211.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz049.txt
 station = ('kd73', 0.0044349)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac211.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz049.txt
 
@@ -13888,17 +13888,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz049.txt
 centroid = (0.5860624, -1.4515327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz050.txt
 description = Greene County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz050.txt
 station = ('kcpp', 0.0005324)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz050.txt
 
@@ -13906,17 +13906,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz050.txt
 centroid = (0.5858407, -1.4465062)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz051.txt
 description = Taliaferro County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac265.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac265.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac265.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac265.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac265.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz051.txt
 station = ('kcpp', 0.0038132)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac265.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz051.txt
 
@@ -13924,17 +13924,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz051.txt
 centroid = (0.5811423, -1.4857691)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz052.txt
 description = Heard County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz052.txt
 station = ('klgc', 0.0050942)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz052.txt
 
@@ -13942,17 +13942,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz052.txt
 centroid = (0.5821284, -1.4793987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz053.txt
 description = Coweta County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz053.txt
 station = ('kcco', 0.0007276)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz053.txt
 
@@ -13960,17 +13960,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz053.txt
 centroid = (0.5831843, -1.4747002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz054.txt
 description = Fayette County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz054.txt
 station = ('kffc', 0.0013419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz054.txt
 
@@ -13978,17 +13978,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz054.txt
 centroid = (0.5854166, -1.4723196)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz055.txt
 description = Clayton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz055.txt
 station = ('katl', 0.0021837)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz055.txt
 
@@ -13996,17 +13996,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz055.txt
 centroid = (0.5805122, -1.4710351)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz056.txt
 description = Spalding County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac255.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac255.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac255.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac255.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac255.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz056.txt
 station = ('k6a2', 0.0006067)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac255.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz056.txt
 
@@ -14014,17 +14014,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz056.txt
 centroid = (0.5838720, -1.4687888)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz057.txt
 description = Henry County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz057.txt
 station = ('khmp', 0.0027881)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz057.txt
 
@@ -14032,17 +14032,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz057.txt
 centroid = (0.5810044, -1.4653296)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz058.txt
 description = Butts County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz058.txt
 station = ('k6a2', 0.0047617)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz058.txt
 
@@ -14050,17 +14050,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz058.txt
 centroid = (0.5814809, -1.4606329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz059.txt
 description = Jasper County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz059.txt
 station = ('kcvc', 0.0059971)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz059.txt
 
@@ -14068,17 +14068,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz059.txt
 centroid = (0.5815751, -1.4551299)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz060.txt
 description = Putnam County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac237.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac237.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac237.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac237.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac237.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz060.txt
 station = ('kmlj', 0.0035053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac237.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz060.txt
 
@@ -14086,17 +14086,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz060.txt
 centroid = (0.5806763, -1.4486407)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz061.txt
 description = Hancock County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz061.txt
 station = ('kmlj', 0.0040429)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz061.txt
 
@@ -14104,17 +14104,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz061.txt
 centroid = (0.5830953, -1.4429806)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz062.txt
 description = Warren County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac301.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac301.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac301.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac301.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac301.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz062.txt
 station = ('khqu', 0.0031423)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac301.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz062.txt
 
@@ -14122,17 +14122,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz062.txt
 centroid = (0.5843868, -1.4395720)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz063.txt
 description = McDuffie County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz063.txt
 station = ('khqu', 0.0009587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz063.txt
 
@@ -14140,17 +14140,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz063.txt
 centroid = (0.5854567, -1.4357777)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz064.txt
 description = Columbia County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz064.txt
 station = ('kdnl', 0.0036194)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz064.txt
 
@@ -14158,17 +14158,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz064.txt
 centroid = (0.5822349, -1.4324528)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz065.txt
 description = Richmond County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac245.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac245.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac245.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac245.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac245.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz065.txt
 station = ('kags', 0.0015622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac245.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz065.txt
 
@@ -14176,17 +14176,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz065.txt
 centroid = (0.5765433, -1.4840238)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz066.txt
 description = Troup County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac285.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac285.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac285.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac285.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac285.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz066.txt
 station = ('klgc', 0.0007765)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac285.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz066.txt
 
@@ -14194,17 +14194,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz066.txt
 centroid = (0.5766673, -1.4780897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz067.txt
 description = Meriwether County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz067.txt
 station = ('kpim', 0.0045006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz067.txt
 
@@ -14212,17 +14212,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz067.txt
 centroid = (0.5775678, -1.4728694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz068.txt
 description = Pike County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac231.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac231.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac231.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac231.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac231.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz068.txt
 station = ('k6a2', 0.0028852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac231.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz068.txt
 
@@ -14230,17 +14230,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz068.txt
 centroid = (0.5738869, -1.4713003)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz069.txt
 description = Upson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac293.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac293.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac293.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac293.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac293.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz069.txt
 station = ('kopn', 0.0013840)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac293.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz069.txt
 
@@ -14248,17 +14248,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz069.txt
 centroid = (0.5772938, -1.4685096)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz070.txt
 description = Lamar County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz070.txt
 station = ('kopn', 0.0028010)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz070.txt
 
@@ -14266,17 +14266,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz070.txt
 centroid = (0.5762047, -1.4646576)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz071.txt
 description = Monroe County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac207.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac207.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac207.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac207.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac207.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz071.txt
 station = ('kopn', 0.0051658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac207.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz071.txt
 
@@ -14284,17 +14284,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz071.txt
 centroid = (0.5763967, -1.4584058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz072.txt
 description = Jones County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz072.txt
 station = ('kmlj', 0.0051925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz072.txt
 
@@ -14302,17 +14302,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz072.txt
 centroid = (0.5771629, -1.4529849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz073.txt
 description = Baldwin County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz073.txt
 station = ('kmlj', 0.0014927)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz073.txt
 
@@ -14320,17 +14320,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz073.txt
 centroid = (0.5754263, -1.4450611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz074.txt
 description = Washington County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac303.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac303.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac303.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac303.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac303.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz074.txt
 station = ('kokz', 0.0006214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac303.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz074.txt
 
@@ -14338,17 +14338,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz074.txt
 centroid = (0.5799607, -1.4418287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz075.txt
 description = Glascock County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz075.txt
 station = ('khqu', 0.0054158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz075.txt
 
@@ -14356,17 +14356,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz075.txt
 centroid = (0.5769168, -1.4384672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz076.txt
 description = Jefferson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz076.txt
 station = ('k2j5', 0.0072014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz076.txt
 
@@ -14374,17 +14374,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz076.txt
 centroid = (0.5770268, -1.4311839)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz077.txt
 description = Burke County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz077.txt
 station = ('k2j5', 0.0029707)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz077.txt
 
@@ -14392,17 +14392,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz077.txt
 centroid = (0.5713510, -1.4819416)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz078.txt
 description = Harris County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz078.txt
 station = ('kpim', 0.0018685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz078.txt
 
@@ -14410,17 +14410,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz078.txt
 centroid = (0.5707139, -1.4753792)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz079.txt
 description = Talbot County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac263.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac263.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac263.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac263.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac263.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz079.txt
 station = ('k6a1', 0.0048003)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac263.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz079.txt
 
@@ -14428,17 +14428,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz079.txt
 centroid = (0.5682024, -1.4704469)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz080.txt
 description = Taylor County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac269.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac269.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac269.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac269.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac269.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz080.txt
 station = ('k6a1', 0.0002543)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac269.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz080.txt
 
@@ -14446,17 +14446,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz080.txt
 centroid = (0.5709757, -1.4658392)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz081.txt
 description = Crawford County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz081.txt
 station = ('k6a1', 0.0045685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz081.txt
 
@@ -14464,17 +14464,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz081.txt
 centroid = (0.5725849, -1.4608039)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz082.txt
 description = Bibb County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz082.txt
 station = ('kmcn', 0.0022651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz082.txt
 
@@ -14482,17 +14482,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz082.txt
 centroid = (0.5701502, -1.4560793)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz083.txt
 description = Twiggs County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac289.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac289.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac289.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac289.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac289.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz083.txt
 station = ('kwrb', 0.0026072)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac289.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz083.txt
 
@@ -14500,17 +14500,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz083.txt
 centroid = (0.5725099, -1.4516130)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz084.txt
 description = Wilkinson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac319.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac319.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac319.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac319.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac319.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz084.txt
 station = ('kdbn', 0.0049737)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac319.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz084.txt
 
@@ -14518,17 +14518,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz084.txt
 centroid = (0.5707488, -1.4426909)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz085.txt
 description = Johnson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz085.txt
 station = ('kokz', 0.0053147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz085.txt
 
@@ -14536,17 +14536,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz085.txt
 centroid = (0.5687993, -1.4364374)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz086.txt
 description = Emanuel County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz086.txt
 station = ('kmhp', 0.0049694)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz086.txt
 
@@ -14554,17 +14554,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz086.txt
 centroid = (0.5723371, -1.4305347)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz087.txt
 description = Jenkins County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz087.txt
 station = ('k2j5', 0.0017647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz087.txt
 
@@ -14572,17 +14572,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz087.txt
 centroid = (0.5716075, -1.4243964)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz088.txt
 description = Screven County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac251.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac251.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac251.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac251.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac251.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz088.txt
 station = ('kjyl', 0.0018540)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac251.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz088.txt
 
@@ -14590,17 +14590,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz088.txt
 centroid = (0.5674065, -1.4813831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz089.txt
 description = Muscogee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac215.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac215.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac215.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac215.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac215.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz089.txt
 station = ('kcsg', 0.0010807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac215.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz089.txt
 
@@ -14608,17 +14608,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz089.txt
 centroid = (0.5645617, -1.4798123)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz090.txt
 description = Chattahoochee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz090.txt
 station = ('klsf', 0.0007237)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz090.txt
 
@@ -14626,17 +14626,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz090.txt
 centroid = (0.5646734, -1.4752326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz091.txt
 description = Marion County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz091.txt
 station = ('klsf', 0.0045659)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz091.txt
 
@@ -14644,17 +14644,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz091.txt
 centroid = (0.5630781, -1.4715726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz092.txt
 description = Schley County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac249.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac249.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac249.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac249.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac249.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz092.txt
 station = ('kacj', 0.0032292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac249.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz092.txt
 
@@ -14662,17 +14662,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz092.txt
 centroid = (0.5647606, -1.4668183)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz093.txt
 description = Macon County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz093.txt
 station = ('k6a1', 0.0047416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz093.txt
 
@@ -14680,17 +14680,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz093.txt
 centroid = (0.5684328, -1.4630554)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz094.txt
 description = Peach County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac225.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac225.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac225.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac225.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac225.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz094.txt
 station = ('kpxe', 0.0013419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac225.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz094.txt
 
@@ -14698,17 +14698,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz094.txt
 centroid = (0.5665164, -1.4602507)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz095.txt
 description = Houston County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz095.txt
 station = ('kpxe', 0.0017397)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz095.txt
 
@@ -14716,17 +14716,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz095.txt
 centroid = (0.5660871, -1.4543462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz096.txt
 description = Bleckley County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz096.txt
 station = ('k48a', 0.0009799)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz096.txt
 
@@ -14734,17 +14734,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz096.txt
 centroid = (0.5665985, -1.4472654)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz097.txt
 description = Laurens County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz097.txt
 station = ('kdbn', 0.0019864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz097.txt
 
@@ -14752,17 +14752,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz097.txt
 centroid = (0.5655547, -1.4410712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz098.txt
 description = Treutlen County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac283.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac283.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac283.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac283.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac283.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz098.txt
 station = ('kvdi', 0.0046818)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac283.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz098.txt
 
@@ -14770,17 +14770,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz098.txt
 centroid = (0.5655478, -1.4324563)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz099.txt
 description = Candler County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz099.txt
 station = ('kmhp', 0.0005304)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz099.txt
 
@@ -14788,17 +14788,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz099.txt
 centroid = (0.5654326, -1.4266880)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz100.txt
 description = Bulloch County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz100.txt
 station = ('ktbr', 0.0015063)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz100.txt
 
@@ -14806,17 +14806,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz100.txt
 centroid = (0.5649194, -1.4196630)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz101.txt
 description = Effingham County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz101.txt
 station = ('ksav', 0.0048456)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz101.txt
 
@@ -14824,17 +14824,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz101.txt
 centroid = (0.5598754, -1.4806536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz102.txt
 description = Stewart County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac259.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac259.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac259.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac259.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac259.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz102.txt
 station = ('klsf', 0.0044478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac259.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz102.txt
 
@@ -14842,17 +14842,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz102.txt
 centroid = (0.5593187, -1.4756933)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz103.txt
 description = Webster County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac307.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac307.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac307.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac307.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac307.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz103.txt
 station = ('kacj', 0.0054708)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac307.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz103.txt
 
@@ -14860,17 +14860,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz103.txt
 centroid = (0.5592035, -1.4695166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz104.txt
 description = Sumter County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac261.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac261.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac261.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac261.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac261.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz104.txt
 station = ('kacj', 0.0012417)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac261.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz104.txt
 
@@ -14878,17 +14878,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz104.txt
 centroid = (0.5612490, -1.4625632)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz105.txt
 description = Dooly County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz105.txt
 station = ('kckf', 0.0029619)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz105.txt
 
@@ -14896,17 +14896,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz105.txt
 centroid = (0.5571615, -1.4620292)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz106.txt
 description = Crisp County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz106.txt
 station = ('kckf', 0.0011516)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz106.txt
 
@@ -14914,17 +14914,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz106.txt
 centroid = (0.5625685, -1.4569380)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz107.txt
 description = Pulaski County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac235.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac235.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac235.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac235.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac235.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz107.txt
 station = ('k48a', 0.0041474)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac235.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz107.txt
 
@@ -14932,17 +14932,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz107.txt
 centroid = (0.5580394, -1.4561666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz108.txt
 description = Wilcox County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac315.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac315.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac315.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac315.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac315.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz108.txt
 station = ('kckf', 0.0050659)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac315.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz108.txt
 
@@ -14950,17 +14950,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz108.txt
 centroid = (0.5615108, -1.4515624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz109.txt
 description = Dodge County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz109.txt
 station = ('kezm', 0.0009468)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz109.txt
 
@@ -14968,17 +14968,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz109.txt
 centroid = (0.5572801, -1.4475569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz110.txt
 description = Telfair County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac271.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac271.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac271.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac271.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac271.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz110.txt
 station = ('kmqw', 0.0030255)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac271.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz110.txt
 
@@ -14986,17 +14986,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz110.txt
 centroid = (0.5605491, -1.4438166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz111.txt
 description = Wheeler County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac309.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac309.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac309.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac309.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac309.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz111.txt
 station = ('kmqw', 0.0023273)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac309.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz111.txt
 
@@ -15004,17 +15004,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz111.txt
 centroid = (0.5615527, -1.4404866)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz112.txt
 description = Montgomery County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac209.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac209.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac209.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac209.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac209.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz112.txt
 station = ('kvdi', 0.0024112)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac209.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz112.txt
 
@@ -15022,17 +15022,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz112.txt
 centroid = (0.5606102, -1.4369400)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz113.txt
 description = Toombs County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac279.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac279.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac279.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac279.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac279.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz113.txt
 station = ('kvdi', 0.0013957)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac279.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz113.txt
 
@@ -15040,17 +15040,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz113.txt
 centroid = (0.5593047, -1.4321858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz114.txt
 description = Tattnall County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac267.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac267.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac267.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac267.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac267.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz114.txt
 station = ('krvj', 0.0014339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac267.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz114.txt
 
@@ -15058,17 +15058,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz114.txt
 centroid = (0.5612420, -1.4291960)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz115.txt
 description = Evans County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz115.txt
 station = ('kcwv', 0.0007156)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz115.txt
 
@@ -15076,17 +15076,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz115.txt
 centroid = (0.5592105, -1.4220070)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz116.txt
 description = Inland Bryan County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz116.txt
 station = ('klhw', 0.0030590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz116.txt
 
@@ -15094,17 +15094,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz116.txt
 centroid = (0.5552364, -1.4172108)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz117.txt
 description = Coastal Bryan County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz117.txt
 station = ('ksvn', 0.0036367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz117.txt
 
@@ -15112,17 +15112,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz117.txt
 centroid = (0.5598528, -1.4176926)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz118.txt
 description = Inland Chatham County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz118.txt
 station = ('ksav', 0.0008021)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz118.txt
 
@@ -15130,17 +15130,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz118.txt
 centroid = (0.5574442, -1.4145911)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz119.txt
 description = Coastal Chatham County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz119.txt
 station = ('ksvn', 0.0020039)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz119.txt
 
@@ -15148,17 +15148,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz119.txt
 centroid = (0.5561911, -1.4838580)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz120.txt
 description = Quitman County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac239.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac239.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac239.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac239.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac239.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz120.txt
 station = ('keuf', 0.0022269)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac239.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz120.txt
 
@@ -15166,17 +15166,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz120.txt
 centroid = (0.5519848, -1.4831860)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz121.txt
 description = Clay County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz121.txt
 station = ('kbij', 0.0041928)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz121.txt
 
@@ -15184,17 +15184,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz121.txt
 centroid = (0.5543619, -1.4792398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz122.txt
 description = Randolph County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz122.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz122.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac243.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac243.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz122.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz122.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz122.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz122.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz122.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac243.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac243.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac243.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz122.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz122.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz122.txt
 station = ('keuf', 0.0064973)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac243.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz122.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz122.txt
 
@@ -15202,17 +15202,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz122.txt
 centroid = (0.5502884, -1.4769831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz123.txt
 description = Calhoun County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz123.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz123.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz123.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz123.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz123.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz123.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz123.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz123.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz123.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz123.txt
 station = ('kbij', 0.0046291)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz123.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz123.txt
 
@@ -15220,17 +15220,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz123.txt
 centroid = (0.5546098, -1.4737002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz124.txt
 description = Terrell County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz124.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz124.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac273.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac273.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz124.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz124.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz124.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz124.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz124.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac273.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac273.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac273.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz124.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz124.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz124.txt
 station = ('kaby', 0.0055166)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac273.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz124.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz124.txt
 
@@ -15238,17 +15238,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz124.txt
 centroid = (0.5503599, -1.4698535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz125.txt
 description = Dougherty County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz125.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz125.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz125.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz125.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz125.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz125.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz125.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz125.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz125.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz125.txt
 station = ('kaby', 0.0002440)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz125.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz125.txt
 
@@ -15256,17 +15256,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz125.txt
 centroid = (0.5546587, -1.4685375)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz126.txt
 description = Lee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz126.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz126.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz126.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz126.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz126.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz126.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz126.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz126.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz126.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz126.txt
 station = ('kaby', 0.0043866)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz126.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz126.txt
 
@@ -15274,17 +15274,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz126.txt
 centroid = (0.5506776, -1.4634760)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz127.txt
 description = Worth County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz127.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz127.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac321.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac321.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz127.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz127.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz127.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz127.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz127.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac321.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac321.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac321.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz127.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz127.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz127.txt
 station = ('kaby', 0.0052009)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac321.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz127.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz127.txt
 
@@ -15292,17 +15292,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz127.txt
 centroid = (0.5535539, -1.4595176)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz128.txt
 description = Turner County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz128.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz128.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac287.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac287.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz128.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz128.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz128.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz128.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz128.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac287.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac287.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac287.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz128.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz128.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz128.txt
 station = ('kckf', 0.0052484)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac287.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz128.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz128.txt
 
@@ -15310,17 +15310,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz128.txt
 centroid = (0.5490369, -1.4578142)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz129.txt
 description = Tift County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz129.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz129.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac277.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac277.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz129.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz129.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz129.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz129.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz129.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac277.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac277.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac277.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz129.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz129.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz129.txt
 station = ('ktma', 0.0007545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac277.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz129.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz129.txt
 
@@ -15328,17 +15328,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz129.txt
 centroid = (0.5543131, -1.4524717)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz130.txt
 description = Ben Hill County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz130.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz130.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz130.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz130.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz130.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz130.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz130.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz130.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz130.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz130.txt
 station = ('kfzg', 0.0015215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz130.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz130.txt
 
@@ -15346,17 +15346,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz130.txt
 centroid = (0.5515642, -1.4534474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz131.txt
 description = Irwin County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz131.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz131.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz131.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz131.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz131.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz131.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz131.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz131.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz131.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz131.txt
 station = ('kfzg', 0.0014234)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz131.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz131.txt
 
@@ -15364,17 +15364,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz131.txt
 centroid = (0.5506374, -1.4459931)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz132.txt
 description = Coffee County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz132.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz132.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz132.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz132.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz132.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz132.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz132.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz132.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz132.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz132.txt
 station = ('kdqh', 0.0012764)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz132.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz132.txt
 
@@ -15382,17 +15382,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz132.txt
 centroid = (0.5551124, -1.4422877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz133.txt
 description = Jeff Davis County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz133.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz133.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz133.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz133.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz133.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz133.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz133.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz133.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz133.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz133.txt
 station = ('kaze', 0.0013892)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz133.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz133.txt
 
@@ -15400,17 +15400,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz133.txt
 centroid = (0.5507160, -1.4390711)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz134.txt
 description = Bacon County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz134.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz134.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz134.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz134.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz134.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz134.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz134.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz134.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz134.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz134.txt
 station = ('kamg', 0.0007883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz134.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz134.txt
 
@@ -15418,17 +15418,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz134.txt
 centroid = (0.5541298, -1.4362140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz135.txt
 description = Appling County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz135.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz135.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz135.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz135.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz135.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz135.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz135.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz135.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz135.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz135.txt
 station = ('kbhc', 0.0016745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz135.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz135.txt
 
@@ -15436,17 +15436,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz135.txt
 centroid = (0.5506776, -1.4297179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz136.txt
 description = Wayne County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz136.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz136.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac305.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac305.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz136.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz136.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz136.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz136.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz136.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac305.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac305.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac305.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz136.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz136.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz136.txt
 station = ('kjes', 0.0005118)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac305.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz136.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz136.txt
 
@@ -15454,17 +15454,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz136.txt
 centroid = (0.5541909, -1.4267369)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz137.txt
 description = Long County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz137.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz137.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz137.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz137.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz137.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz137.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz137.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz137.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz137.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz137.txt
 station = ('klhw', 0.0035020)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz137.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz137.txt
 
@@ -15472,17 +15472,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz137.txt
 centroid = (0.5559013, -1.4230577)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz138.txt
 description = Inland Liberty County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz138.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz138.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz138.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz138.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz138.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz138.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz138.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz138.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz138.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz138.txt
 station = ('klhw', 0.0007348)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz138.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz138.txt
 
@@ -15490,17 +15490,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz138.txt
 centroid = (0.5527737, -1.4172283)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz139.txt
 description = Coastal Liberty County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz139.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz139.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz139.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz139.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz139.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz139.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz139.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz139.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz139.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz139.txt
 station = ('ksvn', 0.0060702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz139.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz139.txt
 
@@ -15508,17 +15508,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz139.txt
 centroid = (0.5502639, -1.4222287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz140.txt
 description = Inland McIntosh County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz140.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz140.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz140.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz140.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz140.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz140.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz140.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz140.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz140.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz140.txt
 station = ('kbqk', 0.0048586)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz140.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz140.txt
 
@@ -15526,17 +15526,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz140.txt
 centroid = (0.5491836, -1.4193244)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz141.txt
 description = Coastal McIntosh County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz141.txt
 station = ('kbqk', 0.0043466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz141.txt
 
@@ -15544,17 +15544,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz141.txt
 centroid = (0.5466877, -1.4818491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz142.txt
 description = Early County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz142.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz142.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz142.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz142.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz142.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz142.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz142.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz142.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz142.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz142.txt
 station = ('kbij', 0.0013087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz142.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz142.txt
 
@@ -15562,17 +15562,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz142.txt
 centroid = (0.5439144, -1.4788297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz143.txt
 description = Miller County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz143.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz143.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz143.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz143.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz143.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz143.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz143.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz143.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz143.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz143.txt
 station = ('kbge', 0.0037391)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz143.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz143.txt
 
@@ -15580,17 +15580,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz143.txt
 centroid = (0.5467453, -1.4738381)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz144.txt
 description = Baker County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz144.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz144.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz144.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz144.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz144.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz144.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz144.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz144.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz144.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz144.txt
 station = ('kcxu', 0.0036936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz144.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz144.txt
 
@@ -15598,17 +15598,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz144.txt
 centroid = (0.5449860, -1.4694660)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz145.txt
 description = Mitchell County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz145.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz145.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac205.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac205.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz145.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz145.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz145.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz145.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz145.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac205.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac205.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac205.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz145.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz145.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz145.txt
 station = ('kcxu', 0.0006510)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac205.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz145.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz145.txt
 
@@ -15616,17 +15616,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz145.txt
 centroid = (0.5443403, -1.4620414)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz146.txt
 description = Colquitt County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz146.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz146.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz146.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz146.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz146.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz146.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz146.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz146.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz146.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz146.txt
 station = ('kmgr', 0.0018805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz146.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz146.txt
 
@@ -15634,17 +15634,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz146.txt
 centroid = (0.5437399, -1.4561369)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz147.txt
 description = Cook County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz147.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz147.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz147.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz147.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz147.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz147.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz147.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz147.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz147.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz147.txt
 station = ('kvad', 0.0047504)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz147.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz147.txt
 
@@ -15652,17 +15652,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz147.txt
 centroid = (0.5458709, -1.4526323)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz148.txt
 description = Berrien County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz148.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz148.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz148.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz148.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz148.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz148.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz148.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz148.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz148.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz148.txt
 station = ('ktma', 0.0046905)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz148.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz148.txt
 
@@ -15670,17 +15670,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz148.txt
 centroid = (0.5462374, -1.4465289)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz149.txt
 description = Atkinson County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz149.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz149.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz149.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz149.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz149.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz149.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz149.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz149.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz149.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz149.txt
 station = ('kdqh', 0.0031478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz149.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz149.txt
 
@@ -15688,17 +15688,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz149.txt
 centroid = (0.5473161, -1.4348928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz151.txt
 description = Pierce County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz151.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz151.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz151.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz151.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz151.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz151.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz151.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz151.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz151.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz151.txt
 station = ('kays', 0.0033711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz151.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz151.txt
 
@@ -15706,17 +15706,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz151.txt
 centroid = (0.5444904, -1.4308541)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz152.txt
 description = Brantley County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz152.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz152.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz152.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz152.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz152.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz152.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz152.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz152.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz152.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz152.txt
 station = ('kays', 0.0063084)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz152.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz152.txt
 
@@ -15724,17 +15724,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz152.txt
 centroid = (0.5457610, -1.4248693)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz153.txt
 description = Inland Glynn County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz153.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz153.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz153.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz153.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz153.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz153.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz153.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz153.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz153.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz153.txt
 station = ('kbqk', 0.0025942)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz153.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz153.txt
 
@@ -15742,17 +15742,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz153.txt
 centroid = (0.5445410, -1.4214049)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz154.txt
 description = Coastal Glynn County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz154.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz154.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz154.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz154.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz154.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz154.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz154.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz154.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz154.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz154.txt
 station = ('kbqk', 0.0009577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz154.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz154.txt
 
@@ -15760,17 +15760,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz154.txt
 centroid = (0.5401462, -1.4812278)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz155.txt
 description = Seminole County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz155.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz155.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac253.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac253.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz155.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz155.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz155.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz155.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz155.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac253.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac253.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac253.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz155.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz155.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz155.txt
 station = ('kbge', 0.0035287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac253.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz155.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz155.txt
 
@@ -15778,17 +15778,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz155.txt
 centroid = (0.5389839, -1.4760599)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz156.txt
 description = Decatur County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz156.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz156.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz156.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz156.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz156.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz156.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz156.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz156.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz156.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz156.txt
 station = ('kbge', 0.0017472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz156.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz156.txt
 
@@ -15796,17 +15796,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz156.txt
 centroid = (0.5388652, -1.4701676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz157.txt
 description = Grady County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz157.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz157.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz157.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz157.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz157.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz157.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz157.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz157.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz157.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz157.txt
 station = ('kcxu', 0.0059071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz157.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz157.txt
 
@@ -15814,17 +15814,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz157.txt
 centroid = (0.5386732, -1.4646698)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz158.txt
 description = Thomas County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz158.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz158.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac275.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac275.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz158.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz158.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz158.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz158.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz158.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac275.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac275.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac275.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz158.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz158.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz158.txt
 station = ('ktvi', 0.0008737)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac275.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz158.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz158.txt
 
@@ -15832,17 +15832,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz158.txt
 centroid = (0.5382944, -1.4587514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz159.txt
 description = Brooks County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz159.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz159.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz159.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz159.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz159.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz159.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz159.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz159.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz159.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz159.txt
 station = ('ktvi', 0.0046291)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz159.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz159.txt
 
@@ -15850,17 +15850,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz159.txt
 centroid = (0.5381531, -1.4532955)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz160.txt
 description = Lowndes County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz160.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz160.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz160.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz160.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz160.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz160.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz160.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz160.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz160.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz160.txt
 station = ('kvld', 0.0008827)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz160.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz160.txt
 
@@ -15868,17 +15868,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz160.txt
 centroid = (0.5417153, -1.4497159)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz161.txt
 description = Lanier County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz161.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz161.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz161.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz161.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz161.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz161.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz161.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz161.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz161.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz161.txt
 station = ('kvad', 0.0024032)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz161.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz161.txt
 
@@ -15886,17 +15886,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz161.txt
 centroid = (0.5359924, -1.4467715)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz162.txt
 description = Echols County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz162.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz162.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz162.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz162.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz162.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz162.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz162.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz162.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz162.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz162.txt
 station = ('khoe', 0.0062965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz162.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz162.txt
 
@@ -15904,17 +15904,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz162.txt
 centroid = (0.5395703, -1.4434972)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz163.txt
 description = Clinch County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz163.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz163.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz163.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz163.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz163.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz163.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz163.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz163.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz163.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz163.txt
 station = ('khoe', 0.0026586)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz163.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz163.txt
 
@@ -15922,17 +15922,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz163.txt
 centroid = (0.5404272, -1.4271348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz165.txt
 description = Inland Camden County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz165.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz165.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz165.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz165.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz165.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz165.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz165.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz165.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz165.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz165.txt
 station = ('kssi', 0.0066130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz165.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz165.txt
 
@@ -15940,17 +15940,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz165.txt
 centroid = (0.5391043, -1.4233928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz166.txt
 description = Coastal Camden County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz166.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz166.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz166.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz166.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz166.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz166.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz166.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz166.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz166.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz166.txt
 station = ('kfhb', 0.0050259)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz166.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz166.txt
 
@@ -15958,17 +15958,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz166.txt
 centroid = (0.5445357, -1.4392386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz250.txt
 description = Northern Ware County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz250.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz250.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac299.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac299.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz250.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz250.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz250.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz250.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz250.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac299.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac299.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac299.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz250.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz250.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz250.txt
 station = ('kays', 0.0012800)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac299.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz250.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz250.txt
 
@@ -15976,17 +15976,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz250.txt
 centroid = (0.5401270, -1.4310688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz264.txt
 description = Northeastern Charlton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz264.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz264.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz264.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz264.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz264.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz264.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz264.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz264.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz264.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz264.txt
 station = ('kays', 0.0080465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz264.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz264.txt
 
@@ -15994,17 +15994,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz264.txt
 centroid = (0.5366416, -1.4371582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz350.txt
 description = Southern Ware County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz350.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz350.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac299.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac299.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz350.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz350.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz350.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz350.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz350.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac299.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac299.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac299.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz350.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz350.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz350.txt
 station = ('khoe', 0.0084066)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac299.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz350.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz350.txt
 
@@ -16012,17 +16012,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz350.txt
 centroid = (0.5364584, -1.4342610)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ga/gaz364.txt
 description = Western Charlton County, GA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gaz364.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gaz364.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ga/gac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ga/gac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ga/gaz364.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ga/gaz364.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gaz364.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gaz364.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gaz364.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ga/gac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ga/gac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ga/gac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ga/gaz364.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ga/gaz364.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz364.txt
 station = ('kjax', 0.0082724)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz364.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz364.txt
 
@@ -16030,17 +16030,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz364.txt
 centroid = (0.3821747, -2.7952670)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz001.txt
 description = Niihau, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz001.txt
 station = ('phbk', 0.0064995)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz001.txt
 
@@ -16048,17 +16048,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz001.txt
 centroid = (0.3840998, -2.7866608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz003.txt
 description = Kauai Southwest, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz003.txt
 station = ('phbk', 0.0019851)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz003.txt
 
@@ -16066,17 +16066,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz003.txt
 centroid = (0.3856532, -2.7845506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz004.txt
 description = Kauai Mountains, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz004.txt
 station = ('phli', 0.0039234)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz004.txt
 
@@ -16084,17 +16084,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz004.txt
 centroid = (0.3742614, -2.7605838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz006.txt
 description = Waianae Coast, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz006.txt
 station = ('phhi', 0.0023226)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz006.txt
 
@@ -16102,17 +16102,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz006.txt
 centroid = (0.3769754, -2.7593778)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz007.txt
 description = Oahu North Shore, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz007.txt
 station = ('phhi', 0.0022975)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz007.txt
 
@@ -16120,17 +16120,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz007.txt
 centroid = (0.3731671, -2.7531853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz009.txt
 description = Olomana, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz009.txt
 station = ('phng', 0.0012079)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz009.txt
 
@@ -16138,17 +16138,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz009.txt
 centroid = (0.3749718, -2.7580915)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz010.txt
 description = Central Oahu, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz010.txt
 station = ('phhi', 0.0001042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz010.txt
 
@@ -16156,17 +16156,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz010.txt
 centroid = (0.3746925, -2.7599363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz011.txt
 description = Waianae Mountains, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz011.txt
 station = ('phhi', 0.0016351)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz011.txt
 
@@ -16174,17 +16174,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz011.txt
 centroid = (0.3633374, -2.7386625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz015.txt
 description = Lanai Mauka, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz015.txt
 station = ('phny', 0.0008312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz015.txt
 
@@ -16192,17 +16192,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz015.txt
 centroid = (0.3586704, -2.7333916)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz016.txt
 description = Kahoolawe, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz016.txt
 station = ('phog', 0.0067630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz016.txt
 
@@ -16210,17 +16210,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz016.txt
 centroid = (0.3651142, -2.7327702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz017.txt
 description = Maui Windward West, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz017.txt
 station = ('phog', 0.0023540)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz017.txt
 
@@ -16228,17 +16228,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz017.txt
 centroid = (0.3646220, -2.7339640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz018.txt
 description = Maui Leeward West, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz018.txt
 station = ('phog', 0.0034481)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz018.txt
 
@@ -16246,17 +16246,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz018.txt
 centroid = (0.3616357, -2.7266371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz022.txt
 description = Haleakala Summit, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz022.txt
 station = ('phog', 0.0046284)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz022.txt
 
@@ -16264,17 +16264,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz022.txt
 centroid = (0.3388225, -2.7206297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz023.txt
 description = Kona, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz023.txt
 station = ('phko', 0.0062449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz023.txt
 
@@ -16282,17 +16282,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz023.txt
 centroid = (0.3470133, -2.7193417)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz026.txt
 description = Kohala, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz026.txt
 station = ('phsf', 0.0045569)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz026.txt
 
@@ -16300,17 +16300,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz026.txt
 centroid = (0.3417739, -2.7153065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz027.txt
 description = Big Island Interior, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz027.txt
 station = ('phsf', 0.0035356)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz027.txt
 
@@ -16318,17 +16318,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz027.txt
 centroid = (0.3413218, -2.7149469)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz028.txt
 description = Big Island Summit, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz028.txt
 station = ('phsf', 0.0039633)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz028.txt
 
@@ -16336,17 +16336,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz028.txt
 centroid = (0.3871734, -2.7842435)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz029.txt
 description = Kauai North, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz029.txt
 station = ('phli', 0.0046735)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz029.txt
 
@@ -16354,17 +16354,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz029.txt
 centroid = (0.3848276, -2.7818785)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz030.txt
 description = Kauai East, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz030.txt
 station = ('phli', 0.0014667)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz030.txt
 
@@ -16372,17 +16372,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz030.txt
 centroid = (0.3824715, -2.7834179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz031.txt
 description = Kauai South, Kauai County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz031.txt
 station = ('phli', 0.0026375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz031.txt
 
@@ -16390,17 +16390,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz031.txt
 centroid = (0.3715754, -2.7528380)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz032.txt
 description = East Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz032.txt
 station = ('phng', 0.0028248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz032.txt
 
@@ -16408,17 +16408,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz032.txt
 centroid = (0.3721094, -2.7556113)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz033.txt
 description = Honolulu Metro, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz033.txt
 station = ('phnl', 0.0010826)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz033.txt
 
@@ -16426,17 +16426,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz033.txt
 centroid = (0.3726732, -2.7580147)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz034.txt
 description = Ewa Plain, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz034.txt
 station = ('phjr', 0.0009521)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz034.txt
 
@@ -16444,17 +16444,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz034.txt
 centroid = (0.3761865, -2.7558993)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz035.txt
 description = Koolau Windward, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz035.txt
 station = ('phhi', 0.0024710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz035.txt
 
@@ -16462,17 +16462,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz035.txt
 centroid = (0.3741759, -2.7557265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz036.txt
 description = Koolau Leeward, Honolulu County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz036.txt
 station = ('phnl', 0.0020702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz036.txt
 
@@ -16480,17 +16480,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz036.txt
 centroid = (0.3691267, -2.7376467)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz037.txt
 description = Molokai Windward, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz037.txt
 station = ('phmk', 0.0039783)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz037.txt
 
@@ -16498,17 +16498,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz037.txt
 centroid = (0.3682121, -2.7371109)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz038.txt
 description = Molokai Southeast, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz038.txt
 station = ('phmk', 0.0045733)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz038.txt
 
@@ -16516,17 +16516,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz038.txt
 centroid = (0.3697358, -2.7418198)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz039.txt
 description = Molokai North, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz039.txt
 station = ('phmk', 0.0006048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz039.txt
 
@@ -16534,17 +16534,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz039.txt
 centroid = (0.3692628, -2.7447240)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz040.txt
 description = Molokai West, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz040.txt
 station = ('phmk', 0.0026253)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz040.txt
 
@@ -16552,17 +16552,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz040.txt
 centroid = (0.3687130, -2.7416784)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz041.txt
 description = Molokai Leeward South, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz041.txt
 station = ('phmk', 0.0004769)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz041.txt
 
@@ -16570,17 +16570,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz041.txt
 centroid = (0.3644736, -2.7386904)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz042.txt
 description = Lanai Windward, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz042.txt
 station = ('phny', 0.0017959)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz042.txt
 
@@ -16588,17 +16588,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz042.txt
 centroid = (0.3637615, -2.7401757)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz043.txt
 description = Lanai Leeward, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz043.txt
 station = ('phny', 0.0012698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz043.txt
 
@@ -16606,17 +16606,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz043.txt
 centroid = (0.3623879, -2.7382558)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz044.txt
 description = Lanai South, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz044.txt
 station = ('phny', 0.0010668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz044.txt
 
@@ -16624,17 +16624,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz044.txt
 centroid = (0.3642642, -2.7299934)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz045.txt
 description = Maui Central Valley North, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz045.txt
 station = ('phog', 0.0005743)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz045.txt
 
@@ -16642,17 +16642,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz045.txt
 centroid = (0.3631716, -2.7308957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz046.txt
 description = Maui Central Valley South, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz046.txt
 station = ('phog', 0.0017034)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz046.txt
 
@@ -16660,17 +16660,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz046.txt
 centroid = (0.3635835, -2.7260996)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz047.txt
 description = Windward Haleakala, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz047.txt
 station = ('phog', 0.0040807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz047.txt
 
@@ -16678,17 +16678,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz047.txt
 centroid = (0.3613425, -2.7236334)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz048.txt
 description = Kipahulu, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz048.txt
 station = ('phog', 0.0070952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz048.txt
 
@@ -16696,17 +16696,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz048.txt
 centroid = (0.3617945, -2.7293372)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz049.txt
 description = South Maui/Upcountry, Maui County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz049.txt
 station = ('phog', 0.0031060)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz049.txt
 
@@ -16714,17 +16714,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz049.txt
 centroid = (0.3602045, -2.7270159)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz050.txt
 description = South Haleakala, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz050.txt
 station = ('phog', 0.0054931)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz050.txt
 
@@ -16732,17 +16732,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz050.txt
 centroid = (0.3326650, -2.7181129)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz051.txt
 description = Big Island South, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz051.txt
 station = ('phko', 0.0128311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz051.txt
 
@@ -16750,17 +16750,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz051.txt
 centroid = (0.3361940, -2.7119310)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz052.txt
 description = Big Island Southeast, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz052.txt
 station = ('phsf', 0.0095001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz052.txt
 
@@ -16768,17 +16768,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz052.txt
 centroid = (0.3425924, -2.7076008)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz053.txt
 description = Big Island East, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz053.txt
 station = ('phto', 0.0020606)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz053.txt
 
@@ -16786,17 +16786,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz053.txt
 centroid = (0.3501846, -2.7156625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/hi/hiz054.txt
 description = Big Island North, Hawaii County, HI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hiz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hiz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/hi/hic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/hi/hic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/hi/hiz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/hi/hiz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hiz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hiz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hiz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/hi/hic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/hi/hic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/hi/hic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/hi/hiz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/hi/hiz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz054.txt
 station = ('phsf', 0.0049581)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz054.txt
 
@@ -16811,17 +16811,17 @@ zone_forecast = https://www.hko.gov.hk/textonly/v2/forecast/nday.htm
 centroid = (0.7571326, -1.6791865)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz001.txt
 description = Lyon County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz001.txt
 station = ('klyv', 0.0042000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz001.txt
 
@@ -16829,17 +16829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz001.txt
 centroid = (0.7570976, -1.6689502)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz002.txt
 description = Osceola County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz002.txt
 station = ('kshl', 0.0038810)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz002.txt
 
@@ -16847,17 +16847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz002.txt
 centroid = (0.7570872, -1.6606982)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz003.txt
 description = Dickinson County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz003.txt
 station = ('kspw', 0.0037800)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz003.txt
 
@@ -16865,17 +16865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz003.txt
 centroid = (0.7570872, -1.6524498)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz004.txt
 description = Emmet County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz004.txt
 station = ('kest', 0.0009867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz004.txt
 
@@ -16883,17 +16883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz004.txt
 centroid = (0.7540555, -1.6442171)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz005.txt
 description = Kossuth County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz005.txt
 station = ('kaxa', 0.0022435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz005.txt
 
@@ -16901,17 +16901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz005.txt
 centroid = (0.7570802, -1.6359704)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz006.txt
 description = Winnebago County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz006.txt
 station = ('kfxy', 0.0028578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz006.txt
 
@@ -16919,17 +16919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz006.txt
 centroid = (0.7570785, -1.6277098)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz007.txt
 description = Worth County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz007.txt
 station = ('kmcw', 0.0040742)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz007.txt
 
@@ -16937,17 +16937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz007.txt
 centroid = (0.7567119, -1.6194753)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz008.txt
 description = Mitchell County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz008.txt
 station = ('kccy', 0.0055120)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz008.txt
 
@@ -16955,17 +16955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz008.txt
 centroid = (0.7567189, -1.6112391)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz009.txt
 description = Howard County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz009.txt
 station = ('kfka', 0.0058476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz009.txt
 
@@ -16973,17 +16973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz009.txt
 centroid = (0.7555635, -1.6029750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz010.txt
 description = Winneshiek County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz010.txt
 station = ('kdeh', 0.0014079)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz010.txt
 
@@ -16991,17 +16991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz010.txt
 centroid = (0.7554535, -1.5948487)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz011.txt
 description = Allamakee County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz011.txt
 station = ('kdeh', 0.0045134)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz011.txt
 
@@ -17009,17 +17009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz011.txt
 centroid = (0.7519332, -1.6786210)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz012.txt
 description = Sioux County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz012.txt
 station = ('ksxk', 0.0017021)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz012.txt
 
@@ -17027,17 +17027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz012.txt
 centroid = (0.7519542, -1.6689711)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz013.txt
 description = O'Brien County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz013.txt
 station = ('kshl', 0.0035235)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz013.txt
 
@@ -17045,17 +17045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz013.txt
 centroid = (0.7519332, -1.6606982)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz014.txt
 description = Clay County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz014.txt
 station = ('kspw', 0.0016889)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz014.txt
 
@@ -17063,17 +17063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz014.txt
 centroid = (0.7519227, -1.6524463)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz015.txt
 description = Palo Alto County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz015.txt
 station = ('kaxa', 0.0052460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz015.txt
 
@@ -17081,17 +17081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz015.txt
 centroid = (0.7519193, -1.6359722)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz016.txt
 description = Hancock County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz016.txt
 station = ('kfxy', 0.0030149)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz016.txt
 
@@ -17099,17 +17099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz016.txt
 centroid = (0.7519158, -1.6277080)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz017.txt
 description = Cerro Gordo County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz017.txt
 station = ('kmcw', 0.0015097)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz017.txt
 
@@ -17117,17 +17117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz017.txt
 centroid = (0.7515388, -1.6194736)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz018.txt
 description = Floyd County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz018.txt
 station = ('kccy', 0.0022006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz018.txt
 
@@ -17135,17 +17135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz018.txt
 centroid = (0.7515405, -1.6112461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz019.txt
 description = Chickasaw County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz019.txt
 station = ('kccy', 0.0038152)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz019.txt
 
@@ -17153,17 +17153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz019.txt
 centroid = (0.7459153, -1.6792546)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz020.txt
 description = Plymouth County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz020.txt
 station = ('klrj', 0.0007505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz020.txt
 
@@ -17171,17 +17171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz020.txt
 centroid = (0.7458787, -1.6689519)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz021.txt
 description = Cherokee County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz021.txt
 station = ('kslb', 0.0055437)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz021.txt
 
@@ -17189,17 +17189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz021.txt
 centroid = (0.7458752, -1.6607035)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz022.txt
 description = Buena Vista County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz022.txt
 station = ('kslb', 0.0025887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz022.txt
 
@@ -17207,17 +17207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz022.txt
 centroid = (0.7458507, -1.6524585)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz023.txt
 description = Pocahontas County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz023.txt
 station = ('kaxa', 0.0080575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz023.txt
 
@@ -17225,17 +17225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz023.txt
 centroid = (0.7465890, -1.6442276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz024.txt
 description = Humboldt County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz024.txt
 station = ('kfod', 0.0039634)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz024.txt
 
@@ -17243,17 +17243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz024.txt
 centroid = (0.7458333, -1.6359879)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz025.txt
 description = Wright County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz025.txt
 station = ('kcav', 0.0004997)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz025.txt
 
@@ -17261,17 +17261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz025.txt
 centroid = (0.7458228, -1.6277359)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz026.txt
 description = Franklin County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz026.txt
 station = ('khpt', 0.0004876)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz026.txt
 
@@ -17279,17 +17279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz026.txt
 centroid = (0.7458071, -1.6194945)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz027.txt
 description = Butler County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz027.txt
 station = ('kalo', 0.0059282)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz027.txt
 
@@ -17297,17 +17297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz027.txt
 centroid = (0.7465594, -1.6112565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz028.txt
 description = Bremer County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz028.txt
 station = ('kalo', 0.0040598)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz028.txt
 
@@ -17315,17 +17315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz028.txt
 centroid = (0.7480918, -1.6029854)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz029.txt
 description = Fayette County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz029.txt
 station = ('kolz', 0.0035824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz029.txt
 
@@ -17333,17 +17333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz029.txt
 centroid = (0.7477811, -1.5942082)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz030.txt
 description = Clayton County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz030.txt
 station = ('kpdc', 0.0041516)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz030.txt
 
@@ -17351,17 +17351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz030.txt
 centroid = (0.7398398, -1.6762997)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz031.txt
 description = Woodbury County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz031.txt
 station = ('ksux', 0.0043642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz031.txt
 
@@ -17369,17 +17369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz031.txt
 centroid = (0.7397892, -1.6670268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz032.txt
 description = Ida County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz032.txt
 station = ('kslb', 0.0051822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz032.txt
 
@@ -17387,17 +17387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz032.txt
 centroid = (0.7397787, -1.6599041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz033.txt
 description = Sac County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz033.txt
 station = ('kslb', 0.0040781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz033.txt
 
@@ -17405,17 +17405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz033.txt
 centroid = (0.7397613, -1.6517883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz034.txt
 description = Calhoun County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz034.txt
 station = ('kcin', 0.0061347)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz034.txt
 
@@ -17423,17 +17423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz034.txt
 centroid = (0.7405048, -1.6437825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz035.txt
 description = Webster County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz035.txt
 station = ('kfod', 0.0021329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz035.txt
 
@@ -17441,17 +17441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz035.txt
 centroid = (0.7397351, -1.6354922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz036.txt
 description = Hamilton County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz036.txt
 station = ('kebs', 0.0022349)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz036.txt
 
@@ -17459,17 +17459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz036.txt
 centroid = (0.7397369, -1.6273520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz037.txt
 description = Hardin County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz037.txt
 station = ('kifa', 0.0015656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz037.txt
 
@@ -17477,17 +17477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz037.txt
 centroid = (0.7400528, -1.6195085)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz038.txt
 description = Grundy County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz038.txt
 station = ('kmiw', 0.0052362)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz038.txt
 
@@ -17495,17 +17495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz038.txt
 centroid = (0.7412431, -1.6110873)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz039.txt
 description = Black Hawk County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz039.txt
 station = ('kalo', 0.0018250)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz039.txt
 
@@ -17513,17 +17513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz039.txt
 centroid = (0.7412536, -1.6028737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz040.txt
 description = Buchanan County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz040.txt
 station = ('kiib', 0.0012808)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz040.txt
 
@@ -17531,17 +17531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz040.txt
 centroid = (0.7412605, -1.5946602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz041.txt
 description = Delaware County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz041.txt
 station = ('kmxo', 0.0048906)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz041.txt
 
@@ -17549,17 +17549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz041.txt
 centroid = (0.7412204, -1.5861971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz042.txt
 description = Dubuque County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz042.txt
 station = ('kdbq', 0.0026386)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz042.txt
 
@@ -17567,17 +17567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz042.txt
 centroid = (0.7339389, -1.6748180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz043.txt
 description = Monona County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz043.txt
 station = ('ktqe', 0.0057572)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz043.txt
 
@@ -17585,17 +17585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz043.txt
 centroid = (0.7336875, -1.6647317)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz044.txt
 description = Crawford County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz044.txt
 station = ('kdns', 0.0009403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz044.txt
 
@@ -17603,17 +17603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz044.txt
 centroid = (0.7336701, -1.6556315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz045.txt
 description = Carroll County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz045.txt
 station = ('kcin', 0.0010313)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz045.txt
 
@@ -17621,17 +17621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz045.txt
 centroid = (0.7336701, -1.6475367)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz046.txt
 description = Greene County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz046.txt
 station = ('kpro', 0.0047617)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz046.txt
 
@@ -17639,17 +17639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz046.txt
 centroid = (0.7336771, -1.6394192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz047.txt
 description = Boone County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz047.txt
 station = ('kbnw', 0.0010857)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz047.txt
 
@@ -17657,17 +17657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz047.txt
 centroid = (0.7336701, -1.6312737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz048.txt
 description = Story County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz048.txt
 station = ('kamw', 0.0021714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz048.txt
 
@@ -17675,17 +17675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz048.txt
 centroid = (0.7336631, -1.6231353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz049.txt
 description = Marshall County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz049.txt
 station = ('kmiw', 0.0017675)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz049.txt
 
@@ -17693,17 +17693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz049.txt
 centroid = (0.7344311, -1.6149985)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz050.txt
 description = Tama County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz050.txt
 station = ('kmiw', 0.0050152)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz050.txt
 
@@ -17711,17 +17711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz050.txt
 centroid = (0.7344363, -1.6068496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz051.txt
 description = Benton County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz051.txt
 station = ('kvti', 0.0024719)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz051.txt
 
@@ -17729,17 +17729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz051.txt
 centroid = (0.7344154, -1.5987024)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz052.txt
 description = Linn County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz052.txt
 station = ('kcid', 0.0037397)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz052.txt
 
@@ -17747,17 +17747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz052.txt
 centroid = (0.7351536, -1.5905430)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz053.txt
 description = Jones County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz053.txt
 station = ('kmxo', 0.0020095)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz053.txt
 
@@ -17765,17 +17765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz053.txt
 centroid = (0.7360350, -1.5808180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz054.txt
 description = Jackson County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz054.txt
 station = ('kdbq', 0.0043029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz054.txt
 
@@ -17783,17 +17783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz054.txt
 centroid = (0.7275038, -1.6723169)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz055.txt
 description = Harrison County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz055.txt
 station = ('kbta', 0.0060389)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz055.txt
 
@@ -17801,17 +17801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz055.txt
 centroid = (0.7275422, -1.6634785)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz056.txt
 description = Shelby County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz056.txt
 station = ('khnr', 0.0017982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz056.txt
 
@@ -17819,17 +17819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz056.txt
 centroid = (0.7275335, -1.6564187)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz057.txt
 description = Audubon County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz057.txt
 station = ('kadu', 0.0003445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz057.txt
 
@@ -17837,17 +17837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz057.txt
 centroid = (0.7275196, -1.6493536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz058.txt
 description = Guthrie County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz058.txt
 station = ('kadu', 0.0054727)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz058.txt
 
@@ -17855,17 +17855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz058.txt
 centroid = (0.7275388, -1.6413041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz059.txt
 description = Dallas County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz059.txt
 station = ('kpro', 0.0029466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz059.txt
 
@@ -17873,17 +17873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz059.txt
 centroid = (0.7275492, -1.6331639)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz060.txt
 description = Polk County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz060.txt
 station = ('kikv', 0.0001261)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz060.txt
 
@@ -17891,17 +17891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz060.txt
 centroid = (0.7275580, -1.6240934)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz061.txt
 description = Jasper County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz061.txt
 station = ('ktnu', 0.0004849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz061.txt
 
@@ -17909,17 +17909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz061.txt
 centroid = (0.7275649, -1.6149776)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz062.txt
 description = Poweshiek County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz062.txt
 station = ('kggi', 0.0026983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz062.txt
 
@@ -17927,17 +17927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz062.txt
 centroid = (0.7275632, -1.6068478)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz063.txt
 description = Iowa County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz063.txt
 station = ('kcid', 0.0056962)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz063.txt
 
@@ -17945,17 +17945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz063.txt
 centroid = (0.7273049, -1.5985139)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz064.txt
 description = Johnson County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz064.txt
 station = ('kiow', 0.0008310)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz064.txt
 
@@ -17963,17 +17963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz064.txt
 centroid = (0.7290642, -1.5905604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz065.txt
 description = Cedar County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz065.txt
 station = ('kiow', 0.0059577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz065.txt
 
@@ -17981,17 +17981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz065.txt
 centroid = (0.7312581, -1.5800815)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz066.txt
 description = Clinton County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz066.txt
 station = ('kcwi', 0.0028181)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz066.txt
 
@@ -17999,17 +17999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz066.txt
 centroid = (0.7240306, -1.5902166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz067.txt
 description = Muscatine County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz067.txt
 station = ('kmut', 0.0021035)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz067.txt
 
@@ -18017,17 +18017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz067.txt
 centroid = (0.7267045, -1.5816732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz068.txt
 description = Scott County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz068.txt
 station = ('kdvn', 0.0006306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz068.txt
 
@@ -18035,17 +18035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz068.txt
 centroid = (0.7214563, -1.6675277)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz069.txt
 description = Pottawattamie County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz069.txt
 station = ('kcbf', 0.0031837)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz069.txt
 
@@ -18053,17 +18053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz069.txt
 centroid = (0.7213708, -1.6568027)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz070.txt
 description = Cass County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz070.txt
 station = ('kaio', 0.0019979)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz070.txt
 
@@ -18071,17 +18071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz070.txt
 centroid = (0.7213568, -1.6488300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz071.txt
 description = Adair County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz071.txt
 station = ('kcsq', 0.0056497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz071.txt
 
@@ -18089,17 +18089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz071.txt
 centroid = (0.7213568, -1.6408800)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz072.txt
 description = Madison County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz072.txt
 station = ('kdsm', 0.0057744)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz072.txt
 
@@ -18107,17 +18107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz072.txt
 centroid = (0.7214196, -1.6329545)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz073.txt
 description = Warren County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz073.txt
 station = ('kdsm', 0.0037369)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz073.txt
 
@@ -18125,17 +18125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz073.txt
 centroid = (0.7214214, -1.6248928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz074.txt
 description = Marion County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz074.txt
 station = ('koxv', 0.0006412)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz074.txt
 
@@ -18143,17 +18143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz074.txt
 centroid = (0.7214336, -1.6168887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz075.txt
 description = Mahaska County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz075.txt
 station = ('kooa', 0.0027112)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz075.txt
 
@@ -18161,17 +18161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz075.txt
 centroid = (0.7214563, -1.6088218)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz076.txt
 description = Keokuk County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz076.txt
 station = ('kooa', 0.0045568)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz076.txt
 
@@ -18179,17 +18179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz076.txt
 centroid = (0.7214423, -1.6007793)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz077.txt
 description = Washington County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz077.txt
 station = ('kawg', 0.0011328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz077.txt
 
@@ -18197,17 +18197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz077.txt
 centroid = (0.7193985, -1.5927822)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz078.txt
 description = Louisa County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz078.txt
 station = ('kmut', 0.0029592)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz078.txt
 
@@ -18215,17 +18215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz078.txt
 centroid = (0.7161644, -1.6689083)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz079.txt
 description = Mills County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz079.txt
 station = ('kcbf', 0.0044998)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz079.txt
 
@@ -18233,17 +18233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz079.txt
 centroid = (0.7161103, -1.6607907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz080.txt
 description = Montgomery County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz080.txt
 station = ('krdk', 0.0014720)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz080.txt
 
@@ -18251,17 +18251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz080.txt
 centroid = (0.7160911, -1.6528128)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz081.txt
 description = Adams County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz081.txt
 station = ('kcsq', 0.0043840)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz081.txt
 
@@ -18269,17 +18269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz081.txt
 centroid = (0.7160684, -1.6448402)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz082.txt
 description = Union County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz082.txt
 station = ('kcsq', 0.0016476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz082.txt
 
@@ -18287,17 +18287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz082.txt
 centroid = (0.7160911, -1.6368588)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz083.txt
 description = Clarke County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz083.txt
 station = ('ki75', 0.0013195)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz083.txt
 
@@ -18305,17 +18305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz083.txt
 centroid = (0.7160964, -1.6288756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz084.txt
 description = Lucas County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz084.txt
 station = ('kcnc', 0.0005178)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz084.txt
 
@@ -18323,17 +18323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz084.txt
 centroid = (0.7161034, -1.6208698)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz085.txt
 description = Monroe County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz085.txt
 station = ('koxv', 0.0057311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz085.txt
 
@@ -18341,17 +18341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz085.txt
 centroid = (0.7161191, -1.6128500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz086.txt
 description = Wapello County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz086.txt
 station = ('kotm', 0.0013233)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz086.txt
 
@@ -18359,17 +18359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz086.txt
 centroid = (0.7161400, -1.6048110)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz087.txt
 description = Jefferson County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz087.txt
 station = ('kffl', 0.0005535)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz087.txt
 
@@ -18377,17 +18377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz087.txt
 centroid = (0.7153738, -1.5977547)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz088.txt
 description = Henry County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz088.txt
 station = ('kmpz', 0.0008442)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz088.txt
 
@@ -18395,17 +18395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz088.txt
 centroid = (0.7142446, -1.5914174)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz089.txt
 description = Des Moines County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz089.txt
 station = ('kbrl', 0.0028051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz089.txt
 
@@ -18413,17 +18413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz089.txt
 centroid = (0.7111449, -1.6686168)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz090.txt
 description = Fremont County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz090.txt
 station = ('ksda', 0.0024874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz090.txt
 
@@ -18431,17 +18431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz090.txt
 centroid = (0.7110314, -1.6606843)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz091.txt
 description = Page County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz091.txt
 station = ('kicl', 0.0015945)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz091.txt
 
@@ -18449,17 +18449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz091.txt
 centroid = (0.7110018, -1.6527657)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz092.txt
 description = Taylor County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz092.txt
 station = ('kicl', 0.0044698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz092.txt
 
@@ -18467,17 +18467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz092.txt
 centroid = (0.7109634, -1.6448681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz093.txt
 description = Ringgold County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz093.txt
 station = ('kcsq', 0.0051724)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz093.txt
 
@@ -18485,17 +18485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz093.txt
 centroid = (0.7110070, -1.6368797)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz094.txt
 description = Decatur County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz094.txt
 station = ('klwd', 0.0023627)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz094.txt
 
@@ -18503,17 +18503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz094.txt
 centroid = (0.7110384, -1.6288704)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz095.txt
 description = Wayne County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz095.txt
 station = ('kcnc', 0.0051545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz095.txt
 
@@ -18521,17 +18521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz095.txt
 centroid = (0.7111030, -1.6208646)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz096.txt
 description = Appanoose County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz096.txt
 station = ('ktvk', 0.0011197)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz096.txt
 
@@ -18539,17 +18539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz096.txt
 centroid = (0.7111815, -1.6128535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz097.txt
 description = Davis County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz097.txt
 station = ('kotm', 0.0061717)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz097.txt
 
@@ -18557,17 +18557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz097.txt
 centroid = (0.7112775, -1.6048302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz098.txt
 description = Van Buren County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz098.txt
 station = ('kffl', 0.0051988)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz098.txt
 
@@ -18575,17 +18575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz098.txt
 centroid = (0.7093367, -1.5966132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ia/iaz099.txt
 description = Lee County, IA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iaz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iaz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ia/iac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ia/iac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ia/iaz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ia/iaz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iaz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iaz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iaz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ia/iac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ia/iac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ia/iac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ia/iaz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ia/iaz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz099.txt
 station = ('kfsw', 0.0019788)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz099.txt
 
@@ -18593,17 +18593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz099.txt
 centroid = (0.8455195, -2.0344622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz001.txt
 description = Northern Panhandle, Kootenai County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz001.txt
 station = ('kszt', 0.0025362)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz001.txt
 
@@ -18611,17 +18611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz001.txt
 centroid = (0.8307820, -2.0388622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz002.txt
 description = Coeur d'Alene Area, Kootenai County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz002.txt
 station = ('kcoe', 0.0029037)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz002.txt
 
@@ -18629,17 +18629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz002.txt
 centroid = (0.8190970, -2.0399146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz003.txt
 description = Idaho Palouse, Latah County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz003.txt
 station = ('kpuw', 0.0042476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz003.txt
 
@@ -18647,17 +18647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz003.txt
 centroid = (0.8255460, -2.0268352)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz004.txt
 description = Central Panhandle Mountains, Shoshone County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz004.txt
 station = ('kmlp', 0.0060580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz004.txt
 
@@ -18665,17 +18665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz004.txt
 centroid = (0.8153096, -2.0171974)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz005.txt
 description = Northern Clearwater Mountains, Clearwater County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz005.txt
 station = ('kp69', 0.0099447)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz005.txt
 
@@ -18683,17 +18683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz005.txt
 centroid = (0.7999752, -2.0117817)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz006.txt
 description = Southern Clearwater Mountains, Idaho County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz006.txt
 station = ('kp69', 0.0067136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz006.txt
 
@@ -18701,17 +18701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz006.txt
 centroid = (0.8065062, -2.0258246)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz007.txt
 description = Orofino/Grangeville Region, Idaho County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz007.txt
 station = ('kgic', 0.0046986)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz007.txt
 
@@ -18719,17 +18719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz007.txt
 centroid = (0.7969889, -2.0324237)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz008.txt
 description = Lower Hells Canyon/Salmon River Region, Idaho County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz008.txt
 station = ('kgic', 0.0062760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz008.txt
 
@@ -18737,17 +18737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz008.txt
 centroid = (0.7875083, -1.9964839)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz009.txt
 description = Western Lemhi County, Lemhi County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz009.txt
 station = ('ksmn', 0.0062416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz009.txt
 
@@ -18755,17 +18755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz009.txt
 centroid = (0.7820489, -1.9824357)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz010.txt
 description = Eastern Lemhi County, Lemhi County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz010.txt
 station = ('ksmn', 0.0065237)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz010.txt
 
@@ -18773,17 +18773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz010.txt
 centroid = (0.7814118, -2.0227773)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz011.txt
 description = West Central Mountains, Washington County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz011.txt
 station = ('kmyl', 0.0030242)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz011.txt
 
@@ -18791,17 +18791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz011.txt
 centroid = (0.7643879, -2.0366596)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz012.txt
 description = Lower Treasure Valley, Washington County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz012.txt
 station = ('keul', 0.0029373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz012.txt
 
@@ -18809,17 +18809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz012.txt
 centroid = (0.7636182, -2.0153631)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz013.txt
 description = Boise Mountains, Elmore County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz013.txt
 station = ('kboi', 0.0101457)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz013.txt
 
@@ -18827,17 +18827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz013.txt
 centroid = (0.7522980, -2.0222135)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz014.txt
 description = Upper Treasure Valley, Owyhee County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz014.txt
 station = ('kmuo', 0.0009342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz014.txt
 
@@ -18845,17 +18845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz014.txt
 centroid = (0.7390405, -2.0254145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz015.txt
 description = Southwest Highlands, Owyhee County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz015.txt
 station = ('k10u', 0.0070306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz015.txt
 
@@ -18863,17 +18863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz015.txt
 centroid = (0.7461422, -2.0000478)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz016.txt
 description = Western Magic Valley, Twin Falls County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz016.txt
 station = ('kjer', 0.0018746)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz016.txt
 
@@ -18881,17 +18881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz016.txt
 centroid = (0.8107177, -2.0368533)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz026.txt
 description = Lewiston Area, Nez Perce County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz026.txt
 station = ('klws', 0.0040485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz026.txt
 
@@ -18899,17 +18899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz026.txt
 centroid = (0.8062130, -2.0348602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz027.txt
 description = Lewis and Southern Nez Perce Counties, Nez Perce County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz027.txt
 station = ('kgic', 0.0071321)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz027.txt
 
@@ -18917,17 +18917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz027.txt
 centroid = (0.7557450, -2.0039574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz028.txt
 description = Camas Prairie, Elmore County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz028.txt
 station = ('kgng', 0.0067329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz028.txt
 
@@ -18935,17 +18935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz028.txt
 centroid = (0.7496835, -2.0381047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz029.txt
 description = Owyhee Mountains, Owyhee County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz029.txt
 station = ('kman', 0.0114128)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz029.txt
 
@@ -18953,17 +18953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz029.txt
 centroid = (0.7369740, -2.0015157)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz030.txt
 description = Southern Twin Falls County, Twin Falls County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz030.txt
 station = ('ktwf', 0.0051556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz030.txt
 
@@ -18971,17 +18971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz030.txt
 centroid = (0.7762526, -2.0347031)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz033.txt
 description = Upper Weiser River, Washington County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz033.txt
 station = ('kmyl', 0.0094084)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz033.txt
 
@@ -18989,17 +18989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz033.txt
 centroid = (0.7518948, -1.9878532)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz051.txt
 description = Shoshone/Lava Beds, Minidoka County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz051.txt
 station = ('ksun', 0.0089457)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz051.txt
 
@@ -19007,17 +19007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz051.txt
 centroid = (0.7615797, -1.9686581)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz052.txt
 description = Arco/Mud Lake Desert, Jefferson County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz052.txt
 station = ('kida', 0.0094489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz052.txt
 
@@ -19025,17 +19025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz052.txt
 centroid = (0.7643076, -1.9534144)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz053.txt
 description = Upper Snake River Plain, Madison County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz053.txt
 station = ('krxe', 0.0017050)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz053.txt
 
@@ -19043,17 +19043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz053.txt
 centroid = (0.7526593, -1.9653193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz054.txt
 description = Lower Snake River Plain, Power County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz054.txt
 station = ('kpih', 0.0036226)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz054.txt
 
@@ -19061,17 +19061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz054.txt
 centroid = (0.7452591, -1.9802593)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz055.txt
 description = Eastern Magic Valley, Power County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz055.txt
 station = ('kbyi', 0.0047256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz055.txt
 
@@ -19079,17 +19079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz055.txt
 centroid = (0.7364103, -1.9868200)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz056.txt
 description = Southern Hills/Albion Mountains, Cassia County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz056.txt
 station = ('kbyi', 0.0062919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz056.txt
 
@@ -19097,17 +19097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz056.txt
 centroid = (0.7378484, -1.9731226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz057.txt
 description = Raft River Region, Power County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz057.txt
 station = ('kbyi', 0.0103845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz057.txt
 
@@ -19115,17 +19115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz057.txt
 centroid = (0.7449013, -1.9598634)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz058.txt
 description = Marsh and Arbon Highlands, Power County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz058.txt
 station = ('kpih', 0.0057161)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz058.txt
 
@@ -19133,17 +19133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz058.txt
 centroid = (0.7365970, -1.9582315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz059.txt
 description = Franklin/Eastern Oneida Region, Oneida County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz059.txt
 station = ('klgu', 0.0086199)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz059.txt
 
@@ -19151,17 +19151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz059.txt
 centroid = (0.7374383, -1.9473372)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz060.txt
 description = Bear River Range, Franklin County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz060.txt
 station = ('k1u7', 0.0030528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz060.txt
 
@@ -19169,17 +19169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz060.txt
 centroid = (0.7373091, -1.9420942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz061.txt
 description = Bear Lake Valley, Bear Lake County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz061.txt
 station = ('k1u7', 0.0008306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz061.txt
 
@@ -19187,17 +19187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz061.txt
 centroid = (0.7503083, -1.9503531)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz062.txt
 description = Blackfoot Mountains, Caribou County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz062.txt
 station = ('k46u', 0.0096097)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz062.txt
 
@@ -19205,17 +19205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz062.txt
 centroid = (0.7503502, -1.9424206)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz063.txt
 description = Caribou Range, Caribou County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz063.txt
 station = ('k46u', 0.0046375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz063.txt
 
@@ -19223,17 +19223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz063.txt
 centroid = (0.7612323, -1.9425270)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz064.txt
 description = Big Hole Mountains, Teton County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz064.txt
 station = ('kdij', 0.0033794)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz064.txt
 
@@ -19241,17 +19241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz064.txt
 centroid = (0.7660128, -1.9418813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz065.txt
 description = Teton Valley, Teton County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz065.txt
 station = ('kdij', 0.0032948)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz065.txt
 
@@ -19259,17 +19259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz065.txt
 centroid = (0.7743572, -1.9458501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz066.txt
 description = Centennial Mountains/Island Park, Teton County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz066.txt
 station = ('kwys', 0.0072020)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz066.txt
 
@@ -19277,17 +19277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz066.txt
 centroid = (0.7718404, -1.9641709)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz067.txt
 description = Beaverhead/Lemhi Highlands, Clark County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz067.txt
 station = ('krxe', 0.0114991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz067.txt
 
@@ -19295,17 +19295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz067.txt
 centroid = (0.7659098, -1.9796624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz068.txt
 description = Lost River Valleys, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz068.txt
 station = ('kllj', 0.0148964)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz068.txt
 
@@ -19313,17 +19313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz068.txt
 centroid = (0.7700742, -1.9820535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz069.txt
 description = Lost River Range, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz069.txt
 station = ('kllj', 0.0107305)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz069.txt
 
@@ -19331,17 +19331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz069.txt
 centroid = (0.7749297, -1.9911432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz070.txt
 description = Challis/Pahsimeroi Valleys, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz070.txt
 station = ('kllj', 0.0026899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz070.txt
 
@@ -19349,17 +19349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz070.txt
 centroid = (0.7752054, -1.9989151)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz071.txt
 description = Frank Church Wilderness, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz071.txt
 station = ('kllj', 0.0043367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz071.txt
 
@@ -19367,17 +19367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz071.txt
 centroid = (0.7730674, -2.0057795)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz072.txt
 description = Sawtooth/Stanley Basin, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz072.txt
 station = ('ksnt', 0.0014888)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz072.txt
 
@@ -19385,17 +19385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz072.txt
 centroid = (0.7631505, -1.9969813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz073.txt
 description = Sun Valley Region, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz073.txt
 station = ('ksun', 0.0042081)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz073.txt
 
@@ -19403,17 +19403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz073.txt
 centroid = (0.7649045, -1.9895759)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz074.txt
 description = Big Lost Highlands/Copper Basin, Custer County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz074.txt
 station = ('ksun', 0.0068725)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz074.txt
 
@@ -19421,17 +19421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz074.txt
 centroid = (0.7579982, -1.9920647)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/id/idz075.txt
 description = Caribou Range, Blaine County, ID, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/id/idc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/id/idc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/id/idz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/id/idz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/id/idc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/id/idc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/id/idc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/id/idz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/id/idz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz075.txt
 station = ('ksun', 0.0023994)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz075.txt
 
@@ -19439,17 +19439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz075.txt
 centroid = (0.7394210, -1.5745017)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz001.txt
 description = Jo Daviess County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz001.txt
 station = ('ksfy', 0.0057439)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz001.txt
 
@@ -19457,17 +19457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz001.txt
 centroid = (0.7391766, -1.5649058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz002.txt
 description = Stephenson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz002.txt
 station = ('kfep', 0.0021100)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz002.txt
 
@@ -19475,17 +19475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz002.txt
 centroid = (0.7389078, -1.5561513)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz003.txt
 description = Winnebago County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz003.txt
 station = ('krfd', 0.0025055)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz003.txt
 
@@ -19493,17 +19493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz003.txt
 centroid = (0.7386774, -1.5502608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz004.txt
 description = Boone County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz004.txt
 station = ('krfd', 0.0041691)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz004.txt
 
@@ -19511,17 +19511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz004.txt
 centroid = (0.7387001, -1.5437856)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz005.txt
 description = McHenry County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz005.txt
 station = ('kbuu', 0.0066671)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz005.txt
 
@@ -19529,17 +19529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz005.txt
 centroid = (0.7386774, -1.5359526)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz006.txt
 description = Lake County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz006.txt
 station = ('kugn', 0.0024051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz006.txt
 
@@ -19547,17 +19547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz006.txt
 centroid = (0.7342391, -1.5696531)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz007.txt
 description = Carroll County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz007.txt
 station = ('ksfy', 0.0022809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz007.txt
 
@@ -19565,17 +19565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz007.txt
 centroid = (0.7337835, -1.5589403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz008.txt
 description = Ogle County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz008.txt
 station = ('krfd', 0.0039623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz008.txt
 
@@ -19583,17 +19583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz008.txt
 centroid = (0.7287849, -1.5692971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz009.txt
 description = Whiteside County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz009.txt
 station = ('ksqi', 0.0032236)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz009.txt
 
@@ -19601,17 +19601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz009.txt
 centroid = (0.7286069, -1.5585877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz010.txt
 description = Lee County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz010.txt
 station = ('krpj', 0.0038638)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz010.txt
 
@@ -19619,17 +19619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz010.txt
 centroid = (0.7311778, -1.5493358)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz011.txt
 description = De Kalb County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz011.txt
 station = ('kdkb', 0.0010500)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz011.txt
 
@@ -19637,17 +19637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz011.txt
 centroid = (0.7319736, -1.5433720)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz012.txt
 description = Kane County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz012.txt
 station = ('karr', 0.0030480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz012.txt
 
@@ -19655,17 +19655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz012.txt
 centroid = (0.7304552, -1.5373855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz013.txt
 description = DuPage County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz013.txt
 station = ('k06c', 0.0024055)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz013.txt
 
@@ -19673,17 +19673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz013.txt
 centroid = (0.7237427, -1.5806993)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz015.txt
 description = Rock Island County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz015.txt
 station = ('kmli', 0.0007298)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz015.txt
 
@@ -19691,17 +19691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz015.txt
 centroid = (0.7217478, -1.5730897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz016.txt
 description = Henry County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz016.txt
 station = ('kmli', 0.0053197)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz016.txt
 
@@ -19709,17 +19709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz016.txt
 centroid = (0.7226379, -1.5625706)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz017.txt
 description = Bureau County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz017.txt
 station = ('ksqi', 0.0063001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz017.txt
 
@@ -19727,17 +19727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz017.txt
 centroid = (0.7191542, -1.5583312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz018.txt
 description = Putnam County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz018.txt
 station = ('kvys', 0.0031071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz018.txt
 
@@ -19745,17 +19745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz018.txt
 centroid = (0.7215872, -1.5513516)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz019.txt
 description = La Salle County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz019.txt
 station = ('kvys', 0.0035032)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz019.txt
 
@@ -19763,17 +19763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz019.txt
 centroid = (0.7258929, -1.5433755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz020.txt
 description = Kendall County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz020.txt
 station = ('kc09', 0.0028885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz020.txt
 
@@ -19781,17 +19781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz020.txt
 centroid = (0.7205574, -1.5431939)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz021.txt
 description = Grundy County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz021.txt
 station = ('kc09', 0.0024501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz021.txt
 
@@ -19799,17 +19799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz021.txt
 centroid = (0.7179883, -1.5334777)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz023.txt
 description = Kankakee County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz023.txt
 station = ('kikk', 0.0011750)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz023.txt
 
@@ -19817,17 +19817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz023.txt
 centroid = (0.7191682, -1.5837362)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz024.txt
 description = Mercer County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz024.txt
 station = ('kmli', 0.0051880)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz024.txt
 
@@ -19835,17 +19835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz024.txt
 centroid = (0.7124102, -1.5869424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz025.txt
 description = Henderson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz025.txt
 station = ('kbrl', 0.0028942)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz025.txt
 
@@ -19853,17 +19853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz025.txt
 centroid = (0.7129461, -1.5815301)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz026.txt
 description = Warren County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz026.txt
 station = ('kgbg', 0.0028832)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz026.txt
 
@@ -19871,17 +19871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz026.txt
 centroid = (0.7143947, -1.5745191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz027.txt
 description = Knox County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz027.txt
 station = ('kgbg', 0.0028739)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz027.txt
 
@@ -19889,17 +19889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz027.txt
 centroid = (0.7172151, -1.5672620)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz028.txt
 description = Stark County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz028.txt
 station = ('kc75', 0.0055636)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz028.txt
 
@@ -19907,17 +19907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz028.txt
 centroid = (0.7118866, -1.5666075)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz029.txt
 description = Peoria County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz029.txt
 station = ('kpia', 0.0023495)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz029.txt
 
@@ -19925,17 +19925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz029.txt
 centroid = (0.7161644, -1.5593609)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz030.txt
 description = Marshall County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz030.txt
 station = ('kc75', 0.0005999)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz030.txt
 
@@ -19943,17 +19943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz030.txt
 centroid = (0.7118884, -1.5570274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz031.txt
 description = Woodford County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc203.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc203.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc203.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc203.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc203.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz031.txt
 station = ('kc75', 0.0046472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc203.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz031.txt
 
@@ -19961,17 +19961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz031.txt
 centroid = (0.7136896, -1.5456252)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz032.txt
 description = Livingston County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz032.txt
 station = ('kpnt', 0.0010528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz032.txt
 
@@ -19979,17 +19979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz032.txt
 centroid = (0.7111763, -1.5328232)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz033.txt
 description = Iroquois County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz033.txt
 station = ('kikk', 0.0056622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz033.txt
 
@@ -19997,17 +19997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz033.txt
 centroid = (0.7051776, -1.5911242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz034.txt
 description = Hancock County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz034.txt
 station = ('keok', 0.0037340)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz034.txt
 
@@ -20015,17 +20015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz034.txt
 centroid = (0.7060939, -1.5826297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz035.txt
 description = McDonough County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz035.txt
 station = ('kmqb', 0.0011685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz035.txt
 
@@ -20033,17 +20033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz035.txt
 centroid = (0.7063836, -1.5744179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz036.txt
 description = Fulton County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz036.txt
 station = ('kmqb', 0.0059640)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz036.txt
 
@@ -20051,17 +20051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz036.txt
 centroid = (0.7069892, -1.5623053)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz037.txt
 description = Tazewell County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz037.txt
 station = ('kpia', 0.0035755)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz037.txt
 
@@ -20069,17 +20069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz037.txt
 centroid = (0.7066978, -1.5506779)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz038.txt
 description = McLean County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz038.txt
 station = ('kbmi', 0.0009414)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz038.txt
 
@@ -20087,17 +20087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz038.txt
 centroid = (0.7085548, -1.5397871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz039.txt
 description = Ford County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz039.txt
 station = ('ktip', 0.0054062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz039.txt
 
@@ -20105,17 +20105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz039.txt
 centroid = (0.7008893, -1.5815318)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz040.txt
 description = Schuyler County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz040.txt
 station = ('ki63', 0.0039028)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz040.txt
 
@@ -20123,17 +20123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz040.txt
 centroid = (0.7023153, -1.5693442)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz041.txt
 description = Mason County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz041.txt
 station = ('kspi', 0.0074828)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz041.txt
 
@@ -20141,17 +20141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz041.txt
 centroid = (0.7003046, -1.5597589)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz042.txt
 description = Logan County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz042.txt
 station = ('kaaa', 0.0007373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz042.txt
 
@@ -20159,17 +20159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz042.txt
 centroid = (0.7011790, -1.5516693)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz043.txt
 description = De Witt County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz043.txt
 station = ('kbmi', 0.0052792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz043.txt
 
@@ -20177,17 +20177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz043.txt
 centroid = (0.6983132, -1.5462064)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz044.txt
 description = Piatt County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz044.txt
 station = ('kcmi', 0.0043547)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz044.txt
 
@@ -20195,17 +20195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz044.txt
 centroid = (0.7005769, -1.5393647)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz045.txt
 description = Champaign County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz045.txt
 station = ('kcmi', 0.0020704)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz045.txt
 
@@ -20213,17 +20213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz045.txt
 centroid = (0.7013361, -1.5312280)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz046.txt
 description = Vermilion County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz046.txt
 station = ('kdnv', 0.0018519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz046.txt
 
@@ -20231,17 +20231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz046.txt
 centroid = (0.6976709, -1.5751143)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz047.txt
 description = Cass County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz047.txt
 station = ('kijx', 0.0034828)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz047.txt
 
@@ -20249,17 +20249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz047.txt
 centroid = (0.6986099, -1.5673441)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz048.txt
 description = Menard County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz048.txt
 station = ('kspi', 0.0034809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz048.txt
 
@@ -20267,17 +20267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz048.txt
 centroid = (0.6919218, -1.5790814)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz049.txt
 description = Scott County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz049.txt
 station = ('kijx', 0.0038979)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz049.txt
 
@@ -20285,17 +20285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz049.txt
 centroid = (0.6931680, -1.5743132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz050.txt
 description = Morgan County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz050.txt
 station = ('kijx', 0.0011370)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz050.txt
 
@@ -20303,17 +20303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz050.txt
 centroid = (0.6939115, -1.5648430)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz051.txt
 description = Sangamon County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz051.txt
 station = ('kspi', 0.0016354)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz051.txt
 
@@ -20321,17 +20321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz051.txt
 centroid = (0.6902044, -1.5581828)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz052.txt
 description = Christian County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz052.txt
 station = ('ktaz', 0.0007091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz052.txt
 
@@ -20339,17 +20339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz052.txt
 centroid = (0.6956865, -1.5526746)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz053.txt
 description = Macon County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz053.txt
 station = ('kdec', 0.0013552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz053.txt
 
@@ -20357,17 +20357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz053.txt
 centroid = (0.6918730, -1.5467003)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz054.txt
 description = Moultrie County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz054.txt
 station = ('kdec', 0.0047154)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz054.txt
 
@@ -20375,17 +20375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz054.txt
 centroid = (0.6941087, -1.5396841)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz055.txt
 description = Douglas County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz055.txt
 station = ('kcmi', 0.0046518)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz055.txt
 
@@ -20393,17 +20393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz055.txt
 centroid = (0.6897576, -1.5397609)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz056.txt
 description = Coles County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz056.txt
 station = ('kmto', 0.0011127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz056.txt
 
@@ -20411,17 +20411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz056.txt
 centroid = (0.6925222, -1.5314496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz057.txt
 description = Edgar County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz057.txt
 station = ('kprg', 0.0010871)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz057.txt
 
@@ -20429,17 +20429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz057.txt
 centroid = (0.6868953, -1.5776118)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz058.txt
 description = Greene County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz058.txt
 station = ('kppq', 0.0071851)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz058.txt
 
@@ -20447,17 +20447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz058.txt
 centroid = (0.6852337, -1.5694769)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz059.txt
 description = Macoupin County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz059.txt
 station = ('k3lf', 0.0037944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz059.txt
 
@@ -20465,17 +20465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz059.txt
 centroid = (0.6847101, -1.5617014)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz060.txt
 description = Montgomery County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz060.txt
 station = ('k3lf', 0.0029046)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz060.txt
 
@@ -20483,17 +20483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz060.txt
 centroid = (0.6875044, -1.5499484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz061.txt
 description = Shelby County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz061.txt
 station = ('k1h2', 0.0066961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz061.txt
 
@@ -20501,17 +20501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz061.txt
 centroid = (0.6854466, -1.5400820)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz062.txt
 description = Cumberland County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz062.txt
 station = ('kmto', 0.0033955)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz062.txt
 
@@ -20519,17 +20519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz062.txt
 centroid = (0.6864991, -1.5321862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz063.txt
 description = Clark County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz063.txt
 station = ('krsv', 0.0058506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz063.txt
 
@@ -20537,17 +20537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz063.txt
 centroid = (0.6787027, -1.5609457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz064.txt
 description = Bond County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz064.txt
 station = ('k3lf', 0.0057961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz064.txt
 
@@ -20555,17 +20555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz064.txt
 centroid = (0.6806819, -1.5537654)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz065.txt
 description = Fayette County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz065.txt
 station = ('kslo', 0.0062914)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz065.txt
 
@@ -20573,17 +20573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz065.txt
 centroid = (0.6817204, -1.5461854)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz066.txt
 description = Effingham County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz066.txt
 station = ('k1h2', 0.0007896)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz066.txt
 
@@ -20591,17 +20591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz066.txt
 centroid = (0.6808529, -1.5385741)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz067.txt
 description = Jasper County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz067.txt
 station = ('koly', 0.0050369)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz067.txt
 
@@ -20609,17 +20609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz067.txt
 centroid = (0.6807273, -1.5316922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz068.txt
 description = Crawford County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz068.txt
 station = ('krsv', 0.0015061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz068.txt
 
@@ -20627,17 +20627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz068.txt
 centroid = (0.6738105, -1.5607153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz069.txt
 description = Clinton County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz069.txt
 station = ('kenl', 0.0047824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz069.txt
 
@@ -20645,17 +20645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz069.txt
 centroid = (0.6745628, -1.5519293)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz070.txt
 description = Marion County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz070.txt
 station = ('kslo', 0.0006271)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz070.txt
 
@@ -20663,17 +20663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz070.txt
 centroid = (0.6763884, -1.5444453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz071.txt
 description = Clay County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz071.txt
 station = ('kfoa', 0.0016370)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz071.txt
 
@@ -20681,17 +20681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz071.txt
 centroid = (0.6756588, -1.5373733)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz072.txt
 description = Richland County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz072.txt
 station = ('koly', 0.0012556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz072.txt
 
@@ -20699,17 +20699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz072.txt
 centroid = (0.6757915, -1.5311180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz073.txt
 description = Lawrence County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz073.txt
 station = ('kajg', 0.0019829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz073.txt
 
@@ -20717,17 +20717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz073.txt
 centroid = (0.6693722, -1.5605076)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz074.txt
 description = Washington County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz074.txt
 station = ('kenl', 0.0051943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz074.txt
 
@@ -20735,17 +20735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz074.txt
 centroid = (0.6684716, -1.5520166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz075.txt
 description = Jefferson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz075.txt
 station = ('kmvn', 0.0008338)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz075.txt
 
@@ -20753,17 +20753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz075.txt
 centroid = (0.6707213, -1.5433179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz076.txt
 description = Wayne County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz076.txt
 station = ('kfwc', 0.0009053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz076.txt
 
@@ -20771,17 +20771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz076.txt
 centroid = (0.6704944, -1.5368183)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz077.txt
 description = Edwards County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz077.txt
 station = ('kajg', 0.0055561)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz077.txt
 
@@ -20789,17 +20789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz077.txt
 centroid = (0.6710110, -1.5331723)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz078.txt
 description = Wabash County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz078.txt
 station = ('kajg', 0.0032259)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz078.txt
 
@@ -20807,17 +20807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz078.txt
 centroid = (0.6641344, -1.5677472)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz079.txt
 description = Randolph County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz079.txt
 station = ('ksar', 0.0024251)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz079.txt
 
@@ -20825,17 +20825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz079.txt
 centroid = (0.6646877, -1.5597501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz080.txt
 description = Perry County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz080.txt
 station = ('kmdh', 0.0054863)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz080.txt
 
@@ -20843,17 +20843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz080.txt
 centroid = (0.6630907, -1.5520201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz081.txt
 description = Franklin County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz081.txt
 station = ('kmwa', 0.0043550)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz081.txt
 
@@ -20861,17 +20861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz081.txt
 centroid = (0.6646493, -1.5453006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz082.txt
 description = Hamilton County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz082.txt
 station = ('kfwc', 0.0054659)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz082.txt
 
@@ -20879,17 +20879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz082.txt
 centroid = (0.6647523, -1.5390226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz083.txt
 description = White County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz083.txt
 station = ('kcul', 0.0007761)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz083.txt
 
@@ -20897,17 +20897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz083.txt
 centroid = (0.6594761, -1.5600119)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz084.txt
 description = Jackson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz084.txt
 station = ('kmdh', 0.0018224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz084.txt
 
@@ -20915,17 +20915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz084.txt
 centroid = (0.6585180, -1.5521196)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz085.txt
 description = Williamson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz085.txt
 station = ('kmwa', 0.0010429)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz085.txt
 
@@ -20933,17 +20933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz085.txt
 centroid = (0.6589194, -1.5453285)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz086.txt
 description = Saline County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz086.txt
 station = ('kmwa', 0.0063524)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz086.txt
 
@@ -20951,17 +20951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz086.txt
 centroid = (0.6590852, -1.5399127)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz087.txt
 description = Gallatin County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz087.txt
 station = ('ktwt', 0.0054631)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz087.txt
 
@@ -20969,17 +20969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz087.txt
 centroid = (0.6539958, -1.5577954)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz088.txt
 description = Union County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz088.txt
 station = ('kmdh', 0.0054482)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz088.txt
 
@@ -20987,17 +20987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz088.txt
 centroid = (0.6537934, -1.5512643)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz089.txt
 description = Johnson County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz089.txt
 station = ('km30', 0.0051091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz089.txt
 
@@ -21005,17 +21005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz089.txt
 centroid = (0.6529731, -1.5456898)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz090.txt
 description = Pope County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz090.txt
 station = ('km30', 0.0047491)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz090.txt
 
@@ -21023,17 +21023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz090.txt
 centroid = (0.6548161, -1.5405480)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz091.txt
 description = Hardin County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz091.txt
 station = ('kgda', 0.0038506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz091.txt
 
@@ -21041,17 +21041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz091.txt
 centroid = (0.6491141, -1.5592353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz092.txt
 description = Alexander County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz092.txt
 station = ('kcir', 0.0027606)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz092.txt
 
@@ -21059,17 +21059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz092.txt
 centroid = (0.6496604, -1.5555544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz093.txt
 description = Pulaski County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz093.txt
 station = ('kcir', 0.0030502)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz093.txt
 
@@ -21077,17 +21077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz093.txt
 centroid = (0.6495941, -1.5482432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz094.txt
 description = Massac County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz094.txt
 station = ('km30', 0.0008297)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz094.txt
 
@@ -21095,17 +21095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz094.txt
 centroid = (0.6979188, -1.5915413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz095.txt
 description = Adams County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz095.txt
 station = ('kuin', 0.0009628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz095.txt
 
@@ -21113,17 +21113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz095.txt
 centroid = (0.6974650, -1.5838933)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz096.txt
 description = Brown County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz096.txt
 station = ('ki63', 0.0008475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz096.txt
 
@@ -21131,17 +21131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz096.txt
 centroid = (0.6915431, -1.5862652)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz097.txt
 description = Pike County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz097.txt
 station = ('kppq', 0.0014792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz097.txt
 
@@ -21149,17 +21149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz097.txt
 centroid = (0.6836315, -1.5824464)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz098.txt
 description = Calhoun County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz098.txt
 station = ('kset', 0.0051981)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz098.txt
 
@@ -21167,17 +21167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz098.txt
 centroid = (0.6821724, -1.5770202)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz099.txt
 description = Jersey County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz099.txt
 station = ('kset', 0.0028540)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz099.txt
 
@@ -21185,17 +21185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz099.txt
 centroid = (0.6777096, -1.5691400)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz100.txt
 description = Madison County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz100.txt
 station = ('kaln', 0.0023183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz100.txt
 
@@ -21203,17 +21203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz100.txt
 centroid = (0.6714334, -1.5695467)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz101.txt
 description = St. Clair County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz101.txt
 station = ('kblv', 0.0017554)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz101.txt
 
@@ -21221,17 +21221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz101.txt
 centroid = (0.6680859, -1.5738925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz102.txt
 description = Monroe County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz102.txt
 station = ('kcps', 0.0050434)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz102.txt
 
@@ -21239,17 +21239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz102.txt
 centroid = (0.7342792, -1.5355826)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz103.txt
 description = Northern Cook County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz103.txt
 station = ('kpwk', 0.0013309)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz103.txt
 
@@ -21257,17 +21257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz103.txt
 centroid = (0.7299107, -1.5314287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz104.txt
 description = Central Cook County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz104.txt
 station = ('kmdw', 0.0006580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz104.txt
 
@@ -21275,17 +21275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz104.txt
 centroid = (0.7257672, -1.5311302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz105.txt
 description = Southern Cook County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz105.txt
 station = ('kigq', 0.0026578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz105.txt
 
@@ -21293,17 +21293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz105.txt
 centroid = (0.7256660, -1.5371097)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz106.txt
 description = Northern Will County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz106.txt
 station = ('klot', 0.0006229)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz106.txt
 
@@ -21311,17 +21311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz106.txt
 centroid = (0.7216221, -1.5374448)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz107.txt
 description = Southern Will County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz107.txt
 station = ('kjot', 0.0032093)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz107.txt
 
@@ -21329,17 +21329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz107.txt
 centroid = (0.7222748, -1.5309121)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/il/ilz108.txt
 description = Eastern Will County, IL, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/il/ilc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/il/ilc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/il/ilz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/il/ilz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/il/ilc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/il/ilc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/il/ilc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/il/ilz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/il/ilz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz108.txt
 station = ('kigq', 0.0036308)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz108.txt
 
@@ -21347,17 +21347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz108.txt
 centroid = (0.7228386, -1.5250984)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz001.txt
 description = Lake County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz001.txt
 station = ('kigq', 0.0029305)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz001.txt
 
@@ -21365,17 +21365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz001.txt
 centroid = (0.7236222, -1.5196076)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz002.txt
 description = Porter County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz002.txt
 station = ('kvpz', 0.0008966)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz002.txt
 
@@ -21383,17 +21383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz002.txt
 centroid = (0.7260116, -1.4985170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz005.txt
 description = Elkhart County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz005.txt
 station = ('kgsh', 0.0014896)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz005.txt
 
@@ -21401,17 +21401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz005.txt
 centroid = (0.7268022, -1.4909737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz006.txt
 description = Lagrange County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz006.txt
 station = ('kirs', 0.0029730)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz006.txt
 
@@ -21419,17 +21419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz006.txt
 centroid = (0.7268232, -1.4835438)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz007.txt
 description = Steuben County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz007.txt
 station = ('kanq', 0.0010812)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz007.txt
 
@@ -21437,17 +21437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz007.txt
 centroid = (0.7225419, -1.4908149)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz008.txt
 description = Noble County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz008.txt
 station = ('kc62', 0.0024230)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz008.txt
 
@@ -21455,17 +21455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz008.txt
 centroid = (0.7225244, -1.4835142)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz009.txt
 description = De Kalb County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz009.txt
 station = ('kgwb', 0.0017948)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz009.txt
 
@@ -21473,17 +21473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz009.txt
 centroid = (0.7148153, -1.5253741)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz010.txt
 description = Newton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz010.txt
 station = ('krzl', 0.0028362)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz010.txt
 
@@ -21491,17 +21491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz010.txt
 centroid = (0.7159864, -1.5204645)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz011.txt
 description = Jasper County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz011.txt
 station = ('krzl', 0.0015759)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz011.txt
 
@@ -21509,17 +21509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz011.txt
 centroid = (0.7204894, -1.5122894)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz012.txt
 description = Starke County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz012.txt
 station = ('koxi', 0.0008778)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz012.txt
 
@@ -21527,17 +21527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz012.txt
 centroid = (0.7163163, -1.5131813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz013.txt
 description = Pulaski County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz013.txt
 station = ('koxi', 0.0050529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz013.txt
 
@@ -21545,17 +21545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz013.txt
 centroid = (0.7212573, -1.5055524)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz014.txt
 description = Marshall County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz014.txt
 station = ('kc65', 0.0008648)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz014.txt
 
@@ -21563,17 +21563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz014.txt
 centroid = (0.7164053, -1.5055838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz015.txt
 description = Fulton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz015.txt
 station = ('krcr', 0.0011257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz015.txt
 
@@ -21581,17 +21581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz015.txt
 centroid = (0.7180180, -1.4923473)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz017.txt
 description = Whitley County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz017.txt
 station = ('kasw', 0.0049881)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz017.txt
 
@@ -21599,17 +21599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz017.txt
 centroid = (0.7171698, -1.4846905)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz018.txt
 description = Allen County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz018.txt
 station = ('ksmd', 0.0014596)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz018.txt
 
@@ -21617,17 +21617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz018.txt
 centroid = (0.7087136, -1.5238627)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz019.txt
 description = Benton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz019.txt
 station = ('klaf', 0.0058213)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz019.txt
 
@@ -21635,17 +21635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz019.txt
 centroid = (0.7112199, -1.5160872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz020.txt
 description = White County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz020.txt
 station = ('kmcx', 0.0014884)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz020.txt
 
@@ -21653,17 +21653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz020.txt
 centroid = (0.7083035, -1.5108181)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz021.txt
 description = Carroll County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz021.txt
 station = ('kggp', 0.0033556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz021.txt
 
@@ -21671,17 +21671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz021.txt
 centroid = (0.7114224, -1.5070220)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz022.txt
 description = Cass County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz022.txt
 station = ('kggp', 0.0009575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz022.txt
 
@@ -21689,17 +21689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz022.txt
 centroid = (0.7115620, -1.5017703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz023.txt
 description = Miami County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz023.txt
 station = ('kgus', 0.0025052)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz023.txt
 
@@ -21707,17 +21707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz023.txt
 centroid = (0.7128920, -1.4973878)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz024.txt
 description = Wabash County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz024.txt
 station = ('kgus', 0.0058158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz024.txt
 
@@ -21725,17 +21725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz024.txt
 centroid = (0.7126040, -1.4920488)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz025.txt
 description = Huntington County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz025.txt
 station = ('khhg', 0.0005819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz025.txt
 
@@ -21743,17 +21743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz025.txt
 centroid = (0.7108569, -1.4873905)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz026.txt
 description = Wells County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz026.txt
 station = ('khhg', 0.0037928)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz026.txt
 
@@ -21761,17 +21761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz026.txt
 centroid = (0.7111431, -1.4824233)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz027.txt
 description = Adams County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz027.txt
 station = ('kpld', 0.0051921)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz027.txt
 
@@ -21779,17 +21779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz027.txt
 centroid = (0.7041862, -1.5246027)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz028.txt
 description = Warren County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz028.txt
 station = ('kdnv', 0.0041268)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz028.txt
 
@@ -21797,17 +21797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz028.txt
 centroid = (0.7049141, -1.5165881)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz029.txt
 description = Tippecanoe County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz029.txt
 station = ('klaf', 0.0008899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz029.txt
 
@@ -21815,17 +21815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz029.txt
 centroid = (0.7033974, -1.5092770)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz030.txt
 description = Clinton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz030.txt
 station = ('kfkr', 0.0012592)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz030.txt
 
@@ -21833,17 +21833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz030.txt
 centroid = (0.7065721, -1.5030234)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz031.txt
 description = Howard County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz031.txt
 station = ('kokk', 0.0010944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz031.txt
 
@@ -21851,17 +21851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz031.txt
 centroid = (0.7071341, -1.4949583)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz032.txt
 description = Grant County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz032.txt
 station = ('kmzz', 0.0005600)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz032.txt
 
@@ -21869,17 +21869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz032.txt
 centroid = (0.7063958, -1.4891987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz033.txt
 description = Blackford County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz033.txt
 station = ('kmie', 0.0043094)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz033.txt
 
@@ -21887,17 +21887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz033.txt
 centroid = (0.7057762, -1.4836293)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz034.txt
 description = Jay County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz034.txt
 station = ('kpld', 0.0003048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz034.txt
 
@@ -21905,17 +21905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz034.txt
 centroid = (0.7002418, -1.5226584)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz035.txt
 description = Fountain County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz035.txt
 station = ('kcfj', 0.0049939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz035.txt
 
@@ -21923,17 +21923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz035.txt
 centroid = (0.6988368, -1.5165742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz036.txt
 description = Montgomery County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz036.txt
 station = ('kcfj', 0.0011855)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz036.txt
 
@@ -21941,17 +21941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz036.txt
 centroid = (0.6990183, -1.5091635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz037.txt
 description = Boone County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz037.txt
 station = ('ktyq', 0.0029246)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz037.txt
 
@@ -21959,17 +21959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz037.txt
 centroid = (0.7035667, -1.5018890)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz038.txt
 description = Tipton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz038.txt
 station = ('kokk', 0.0038784)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz038.txt
 
@@ -21977,17 +21977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz038.txt
 centroid = (0.6993971, -1.5018907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz039.txt
 description = Hamilton County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz039.txt
 station = ('kump', 0.0023982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz039.txt
 
@@ -21995,17 +21995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz039.txt
 centroid = (0.7009522, -1.4960858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz040.txt
 description = Madison County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz040.txt
 station = ('kaid', 0.0015792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz040.txt
 
@@ -22013,17 +22013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz040.txt
 centroid = (0.7021041, -1.4904571)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz041.txt
 description = Delaware County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz041.txt
 station = ('kmie', 0.0001083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz041.txt
 
@@ -22031,17 +22031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz041.txt
 centroid = (0.7008823, -1.4837288)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz042.txt
 description = Randolph County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz042.txt
 station = ('kpld', 0.0051252)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz042.txt
 
@@ -22049,17 +22049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz042.txt
 centroid = (0.6955800, -1.5265348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz043.txt
 description = Vermillion County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz043.txt
 station = ('kprg', 0.0038463)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz043.txt
 
@@ -22067,17 +22067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz043.txt
 centroid = (0.6941803, -1.5220371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz044.txt
 description = Parke County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz044.txt
 station = ('kcfj', 0.0052102)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz044.txt
 
@@ -22085,17 +22085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz044.txt
 centroid = (0.6923075, -1.5157312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz045.txt
 description = Putnam County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz045.txt
 station = ('kgpc', 0.0007224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz045.txt
 
@@ -22103,17 +22103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz045.txt
 centroid = (0.6941087, -1.5098843)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz046.txt
 description = Hendricks County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz046.txt
 station = ('k2r2', 0.0006127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz046.txt
 
@@ -22121,17 +22121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz046.txt
 centroid = (0.6943199, -1.5033987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz047.txt
 description = Marion County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz047.txt
 station = ('keye', 0.0023473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz047.txt
 
@@ -22139,17 +22139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz047.txt
 centroid = (0.6950512, -1.4970247)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz048.txt
 description = Hancock County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz048.txt
 station = ('kmqj', 0.0016969)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz048.txt
 
@@ -22157,17 +22157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz048.txt
 centroid = (0.6969292, -1.4904501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz049.txt
 description = Henry County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz049.txt
 station = ('kuwl', 0.0013441)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz049.txt
 
@@ -22175,17 +22175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz049.txt
 centroid = (0.6957650, -1.4837027)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz050.txt
 description = Wayne County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz050.txt
 station = ('krid', 0.0029189)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz050.txt
 
@@ -22193,17 +22193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz050.txt
 centroid = (0.6881938, -1.5252432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz051.txt
 description = Vigo County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz051.txt
 station = ('khuf', 0.0010448)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz051.txt
 
@@ -22211,17 +22211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz051.txt
 centroid = (0.6875341, -1.5204575)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz052.txt
 description = Clay County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz052.txt
 station = ('khuf', 0.0028864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz052.txt
 
@@ -22229,17 +22229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz052.txt
 centroid = (0.6861395, -1.5156020)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz053.txt
 description = Owen County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz053.txt
 station = ('kbmg', 0.0041237)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz053.txt
 
@@ -22247,17 +22247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz053.txt
 centroid = (0.6890822, -1.5087708)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz054.txt
 description = Morgan County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz054.txt
 station = ('kind', 0.0046523)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz054.txt
 
@@ -22265,17 +22265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz054.txt
 centroid = (0.6892288, -1.5027582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz055.txt
 description = Johnson County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz055.txt
 station = ('kind', 0.0046508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz055.txt
 
@@ -22283,17 +22283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz055.txt
 centroid = (0.6898170, -1.4973494)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz056.txt
 description = Shelby County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz056.txt
 station = ('kgez', 0.0010484)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz056.txt
 
@@ -22301,17 +22301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz056.txt
 centroid = (0.6914977, -1.4916579)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz057.txt
 description = Rush County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz057.txt
 station = ('kgez', 0.0045406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz057.txt
 
@@ -22319,17 +22319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz057.txt
 centroid = (0.6918503, -1.4866488)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz058.txt
 description = Fayette County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz058.txt
 station = ('kuwl', 0.0045683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz058.txt
 
@@ -22337,17 +22337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz058.txt
 centroid = (0.6915954, -1.4822226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz059.txt
 description = Union County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz059.txt
 station = ('krid', 0.0025505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz059.txt
 
@@ -22355,17 +22355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz059.txt
 centroid = (0.6822283, -1.5256726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz060.txt
 description = Sullivan County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz060.txt
 station = ('krsv', 0.0034318)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz060.txt
 
@@ -22373,17 +22373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz060.txt
 centroid = (0.6813120, -1.5177732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz061.txt
 description = Greene County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz061.txt
 station = ('kbmg', 0.0050814)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz061.txt
 
@@ -22391,17 +22391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz061.txt
 centroid = (0.6834866, -1.5101130)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz062.txt
 description = Monroe County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz062.txt
 station = ('kbmg', 0.0012805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz062.txt
 
@@ -22409,17 +22409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz062.txt
 centroid = (0.6841027, -1.5049520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz063.txt
 description = Brown County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz063.txt
 station = ('kbak', 0.0045939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz063.txt
 
@@ -22427,17 +22427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz063.txt
 centroid = (0.6842720, -1.4991977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz064.txt
 description = Bartholomew County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz064.txt
 station = ('kbak', 0.0010610)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz064.txt
 
@@ -22445,17 +22445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz064.txt
 centroid = (0.6860348, -1.4922792)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz065.txt
 description = Decatur County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz065.txt
 station = ('khlb', 0.0033458)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz065.txt
 
@@ -22463,17 +22463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz065.txt
 centroid = (0.6879180, -1.4845823)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz066.txt
 description = Franklin County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz066.txt
 station = ('khlb', 0.0029395)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz066.txt
 
@@ -22481,17 +22481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz066.txt
 centroid = (0.6752522, -1.5257319)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz067.txt
 description = Knox County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz067.txt
 station = ('klwv', 0.0028238)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz067.txt
 
@@ -22499,17 +22499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz067.txt
 centroid = (0.6754843, -1.5196948)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz068.txt
 description = Daviess County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz068.txt
 station = ('kdcy', 0.0007853)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz068.txt
 
@@ -22517,17 +22517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz068.txt
 centroid = (0.6755820, -1.5149999)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz069.txt
 description = Martin County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz069.txt
 station = ('kfrh', 0.0041885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz069.txt
 
@@ -22535,17 +22535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz069.txt
 centroid = (0.6779068, -1.5094201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz070.txt
 description = Lawrence County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz070.txt
 station = ('kbfr', 0.0005171)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz070.txt
 
@@ -22553,17 +22553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz070.txt
 centroid = (0.6790448, -1.5016394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz071.txt
 description = Jackson County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz071.txt
 station = ('kbak', 0.0065583)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz071.txt
 
@@ -22571,17 +22571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz071.txt
 centroid = (0.6806243, -1.4944923)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz072.txt
 description = Jennings County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz072.txt
 station = ('kims', 0.0047049)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz072.txt
 
@@ -22589,17 +22589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz072.txt
 centroid = (0.6824831, -1.4881096)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz073.txt
 description = Ripley County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz073.txt
 station = ('khlb', 0.0042084)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz073.txt
 
@@ -22607,17 +22607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz073.txt
 centroid = (0.6832144, -1.4830639)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz074.txt
 description = Dearborn County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz074.txt
 station = ('ki67', 0.0033429)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz074.txt
 
@@ -22625,17 +22625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz074.txt
 centroid = (0.6798075, -1.4829190)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz075.txt
 description = Ohio County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz075.txt
 station = ('kcvg', 0.0044062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz075.txt
 
@@ -22643,17 +22643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz075.txt
 centroid = (0.6726813, -1.5096243)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz076.txt
 description = Orange County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz076.txt
 station = ('kfrh', 0.0020335)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz076.txt
 
@@ -22661,17 +22661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz076.txt
 centroid = (0.6736971, -1.5028210)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz077.txt
 description = Washington County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz077.txt
 station = ('kbfr', 0.0062445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz077.txt
 
@@ -22679,17 +22679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz077.txt
 centroid = (0.6751824, -1.4965745)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz078.txt
 description = Scott County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz078.txt
 station = ('kims', 0.0040489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz078.txt
 
@@ -22697,17 +22697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz078.txt
 centroid = (0.6769399, -1.4911831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz079.txt
 description = Jefferson County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz079.txt
 station = ('kims', 0.0005962)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz079.txt
 
@@ -22715,17 +22715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz079.txt
 centroid = (0.6776450, -1.4841756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz080.txt
 description = Switzerland County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz080.txt
 station = ('kcvg', 0.0063665)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz080.txt
 
@@ -22733,17 +22733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz080.txt
 centroid = (0.6686671, -1.5286396)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz081.txt
 description = Gibson County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz081.txt
 station = ('kevv', 0.0049108)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz081.txt
 
@@ -22751,17 +22751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz081.txt
 centroid = (0.6701855, -1.5224891)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz082.txt
 description = Pike County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz082.txt
 station = ('khnb', 0.0046556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz082.txt
 
@@ -22769,17 +22769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz082.txt
 centroid = (0.6695834, -1.5163386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz083.txt
 description = Dubois County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz083.txt
 station = ('khnb', 0.0022145)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz083.txt
 
@@ -22787,17 +22787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz083.txt
 centroid = (0.6683267, -1.5088668)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz084.txt
 description = Crawford County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz084.txt
 station = ('kfrh', 0.0045116)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz084.txt
 
@@ -22805,17 +22805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz084.txt
 centroid = (0.6636056, -1.5335929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz085.txt
 description = Posey County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz085.txt
 station = ('kcul', 0.0036935)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz085.txt
 
@@ -22823,17 +22823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz085.txt
 centroid = (0.6636684, -1.5286588)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz086.txt
 description = Vanderburgh County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz086.txt
 station = ('kevv', 0.0007331)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz086.txt
 
@@ -22841,17 +22841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz086.txt
 centroid = (0.6648343, -1.5231855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz087.txt
 description = Warrick County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz087.txt
 station = ('kevv', 0.0037339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz087.txt
 
@@ -22859,17 +22859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz087.txt
 centroid = (0.6634730, -1.5185708)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz088.txt
 description = Spencer County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz088.txt
 station = ('kky8', 0.0023053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz088.txt
 
@@ -22877,17 +22877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz088.txt
 centroid = (0.6646161, -1.5121184)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz089.txt
 description = Perry County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz089.txt
 station = ('kky8', 0.0037598)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz089.txt
 
@@ -22895,17 +22895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz089.txt
 centroid = (0.6666320, -1.5029257)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz090.txt
 description = Harrison County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz090.txt
 station = ('kftk', 0.0055224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz090.txt
 
@@ -22913,17 +22913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz090.txt
 centroid = (0.6687997, -1.4993565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz091.txt
 description = Floyd County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz091.txt
 station = ('kjvy', 0.0024436)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz091.txt
 
@@ -22931,17 +22931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz091.txt
 centroid = (0.6715556, -1.4958746)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz092.txt
 description = Clark County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz092.txt
 station = ('kjvy', 0.0019982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz092.txt
 
@@ -22949,17 +22949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz092.txt
 centroid = (0.7265125, -1.5133104)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz103.txt
 description = Northern La Porte County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz103.txt
 station = ('kppo', 0.0010053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz103.txt
 
@@ -22967,17 +22967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz103.txt
 centroid = (0.7263938, -1.5046396)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz104.txt
 description = Eastern St. Joseph County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz104.txt
 station = ('ksbn', 0.0019841)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz104.txt
 
@@ -22985,17 +22985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz104.txt
 centroid = (0.7214807, -1.4981522)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz116.txt
 description = Northern Kosciusko County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz116.txt
 station = ('kasw', 0.0011061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz116.txt
 
@@ -23003,17 +23003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz116.txt
 centroid = (0.7227251, -1.5149022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz203.txt
 description = Southern La Porte County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz203.txt
 station = ('koxi', 0.0022443)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz203.txt
 
@@ -23021,17 +23021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz203.txt
 centroid = (0.7262647, -1.5086312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz204.txt
 description = Western St. Joseph County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz204.txt
 station = ('ksbn', 0.0022082)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz204.txt
 
@@ -23039,17 +23039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz204.txt
 centroid = (0.7181978, -1.4989551)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/in/inz216.txt
 description = Southern Kosciusko County, IN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inz216.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inz216.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/in/inc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/in/inc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/in/inz216.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/in/inz216.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inz216.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inz216.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inz216.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/in/inc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/in/inc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/in/inc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/in/inz216.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/in/inz216.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz216.txt
 station = ('kasw', 0.0022519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz216.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz216.txt
 
@@ -23057,17 +23057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz216.txt
 centroid = (0.6943932, -1.7755444)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz001.txt
 description = Cheyenne County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz001.txt
 station = ('ksyf', 0.0009702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz001.txt
 
@@ -23075,17 +23075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz001.txt
 centroid = (0.6943827, -1.7641055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz002.txt
 description = Rawlins County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz002.txt
 station = ('kadt', 0.0010599)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz002.txt
 
@@ -23093,17 +23093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz002.txt
 centroid = (0.6943740, -1.7533560)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz003.txt
 description = Decatur County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz003.txt
 station = ('koin', 0.0013646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz003.txt
 
@@ -23111,17 +23111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz003.txt
 centroid = (0.6943688, -1.7436433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz004.txt
 description = Norton County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz004.txt
 station = ('knrn', 0.0011578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz004.txt
 
@@ -23129,17 +23129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz004.txt
 centroid = (0.6943705, -1.7339305)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz005.txt
 description = Phillips County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz005.txt
 station = ('kk82', 0.0074360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz005.txt
 
@@ -23147,17 +23147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz005.txt
 centroid = (0.6943810, -1.7241322)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz006.txt
 description = Smith County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz006.txt
 station = ('kk82', 0.0004321)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz006.txt
 
@@ -23165,17 +23165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz006.txt
 centroid = (0.6943740, -1.7142345)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz007.txt
 description = Jewell County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz007.txt
 station = ('kcnk', 0.0086476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz007.txt
 
@@ -23183,17 +23183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz007.txt
 centroid = (0.6951262, -1.7043245)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz008.txt
 description = Republic County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz008.txt
 station = ('kcnk', 0.0048243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz008.txt
 
@@ -23201,17 +23201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz008.txt
 centroid = (0.6943653, -1.6944948)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz009.txt
 description = Washington County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz009.txt
 station = ('kmyz', 0.0062480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz009.txt
 
@@ -23219,17 +23219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz009.txt
 centroid = (0.6943548, -1.6846424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz010.txt
 description = Marshall County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz010.txt
 station = ('kmyz', 0.0019106)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz010.txt
 
@@ -23237,17 +23237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz010.txt
 centroid = (0.6943531, -1.6757622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz011.txt
 description = Nemaha County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz011.txt
 station = ('kk83', 0.0037854)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz011.txt
 
@@ -23255,17 +23255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz011.txt
 centroid = (0.6951053, -1.6679099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz012.txt
 description = Brown County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz012.txt
 station = ('kk83', 0.0031852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz012.txt
 
@@ -23273,17 +23273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz012.txt
 centroid = (0.6868115, -1.7753489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz013.txt
 description = Sherman County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz013.txt
 station = ('kgld', 0.0003793)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz013.txt
 
@@ -23291,17 +23291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz013.txt
 centroid = (0.6868028, -1.7637512)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz014.txt
 description = Thomas County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz014.txt
 station = ('kcbk', 0.0013419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz014.txt
 
@@ -23309,17 +23309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz014.txt
 centroid = (0.6867923, -1.7530401)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz015.txt
 description = Sheridan County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz015.txt
 station = ('koel', 0.0065725)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz015.txt
 
@@ -23327,17 +23327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz015.txt
 centroid = (0.6867818, -1.7432925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz016.txt
 description = Graham County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz016.txt
 station = ('khlc', 0.0007364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz016.txt
 
@@ -23345,17 +23345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz016.txt
 centroid = (0.6867888, -1.7335500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz017.txt
 description = Rooks County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz017.txt
 station = ('khlc', 0.0068646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz017.txt
 
@@ -23363,17 +23363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz017.txt
 centroid = (0.6867923, -1.7238251)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz018.txt
 description = Osborne County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz018.txt
 station = ('kk82', 0.0071780)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz018.txt
 
@@ -23381,17 +23381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz018.txt
 centroid = (0.6875428, -1.7140791)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz019.txt
 description = Mitchell County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz019.txt
 station = ('kcnk', 0.0080201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz019.txt
 
@@ -23399,17 +23399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz019.txt
 centroid = (0.6890630, -1.7043053)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz020.txt
 description = Cloud County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz020.txt
 station = ('kcnk', 0.0012391)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz020.txt
 
@@ -23417,17 +23417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz020.txt
 centroid = (0.6867818, -1.6958509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz021.txt
 description = Clay County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz021.txt
 station = ('kcnk', 0.0074293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz021.txt
 
@@ -23435,17 +23435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz021.txt
 centroid = (0.6858533, -1.6883477)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz022.txt
 description = Riley County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz022.txt
 station = ('kmhk', 0.0029329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz022.txt
 
@@ -23453,17 +23453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz022.txt
 centroid = (0.6872932, -1.6814938)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz023.txt
 description = Pottawatomie County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz023.txt
 station = ('kmhk', 0.0062930)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz023.txt
 
@@ -23471,17 +23471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz023.txt
 centroid = (0.6879564, -1.6719155)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz024.txt
 description = Jackson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz024.txt
 station = ('ktop', 0.0064874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz024.txt
 
@@ -23489,17 +23489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz024.txt
 centroid = (0.6899636, -1.6635239)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz025.txt
 description = Atchison County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz025.txt
 station = ('kstj', 0.0067177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz025.txt
 
@@ -23507,17 +23507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz025.txt
 centroid = (0.6847939, -1.6647544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz026.txt
 description = Jefferson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz026.txt
 station = ('klwc', 0.0044411)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz026.txt
 
@@ -23525,17 +23525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz026.txt
 centroid = (0.6792228, -1.7761099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz027.txt
 description = Wallace County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz027.txt
 station = ('kgld', 0.0079022)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz027.txt
 
@@ -23543,17 +23543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz027.txt
 centroid = (0.6792350, -1.7653744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz028.txt
 description = Logan County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz028.txt
 station = ('koel', 0.0056242)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz028.txt
 
@@ -23561,17 +23561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz028.txt
 centroid = (0.6792141, -1.7537574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz029.txt
 description = Gove County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz029.txt
 station = ('koel', 0.0056433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz029.txt
 
@@ -23579,17 +23579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz029.txt
 centroid = (0.6791827, -1.7431109)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz030.txt
 description = Trego County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz030.txt
 station = ('khlc', 0.0079134)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz030.txt
 
@@ -23597,17 +23597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz030.txt
 centroid = (0.6791914, -1.7334139)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz031.txt
 description = Ellis County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz031.txt
 station = ('khys', 0.0013238)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz031.txt
 
@@ -23615,17 +23615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz031.txt
 centroid = (0.6791931, -1.7237273)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz032.txt
 description = Russell County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz032.txt
 station = ('krsl', 0.0011199)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz032.txt
 
@@ -23633,17 +23633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz032.txt
 centroid = (0.6814708, -1.7140495)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz033.txt
 description = Lincoln County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz033.txt
 station = ('krsl', 0.0088328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz033.txt
 
@@ -23651,17 +23651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz033.txt
 centroid = (0.6829927, -1.7043193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz034.txt
 description = Ottawa County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz034.txt
 station = ('ksln', 0.0060959)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz034.txt
 
@@ -23669,17 +23669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz034.txt
 centroid = (0.6783466, -1.6956345)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz035.txt
 description = Dickinson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz035.txt
 station = ('kfri', 0.0062211)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz035.txt
 
@@ -23687,17 +23687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz035.txt
 centroid = (0.6807203, -1.6886514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz036.txt
 description = Geary County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz036.txt
 station = ('kfri', 0.0009409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz036.txt
 
@@ -23705,17 +23705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz036.txt
 centroid = (0.6752243, -1.6868590)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz037.txt
 description = Morris County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz037.txt
 station = ('kfri', 0.0066088)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz037.txt
 
@@ -23723,17 +23723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz037.txt
 centroid = (0.6798633, -1.6790940)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz038.txt
 description = Wabaunsee County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz038.txt
 station = ('kfoe', 0.0075420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz038.txt
 
@@ -23741,17 +23741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz038.txt
 centroid = (0.6814027, -1.6712645)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz039.txt
 description = Shawnee County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz039.txt
 station = ('ktop', 0.0017248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz039.txt
 
@@ -23759,17 +23759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz039.txt
 centroid = (0.6786626, -1.6631661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz040.txt
 description = Douglas County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz040.txt
 station = ('klwc', 0.0025254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz040.txt
 
@@ -23777,17 +23777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz040.txt
 centroid = (0.6716114, -1.7768499)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz041.txt
 description = Greeley County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz041.txt
 station = ('k3k3', 0.0085707)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz041.txt
 
@@ -23795,17 +23795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz041.txt
 centroid = (0.6716393, -1.7688458)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz042.txt
 description = Wichita County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc203.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc203.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc203.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc203.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc203.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz042.txt
 station = ('ktqk', 0.0063193)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc203.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz042.txt
 
@@ -23813,17 +23813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz042.txt
 centroid = (0.6716411, -1.7611576)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz043.txt
 description = Scott County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz043.txt
 station = ('ktqk', 0.0003294)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz043.txt
 
@@ -23831,17 +23831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz043.txt
 centroid = (0.6716271, -1.7534695)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz044.txt
 description = Lane County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz044.txt
 station = ('ktqk', 0.0057208)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz044.txt
 
@@ -23849,17 +23849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz044.txt
 centroid = (0.6715940, -1.7438667)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz045.txt
 description = Ness County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz045.txt
 station = ('khys', 0.0109620)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz045.txt
 
@@ -23867,17 +23867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz045.txt
 centroid = (0.6723584, -1.7332725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz046.txt
 description = Rush County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz046.txt
 station = ('khys', 0.0057314)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz046.txt
 
@@ -23885,17 +23885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz046.txt
 centroid = (0.6715852, -1.7236261)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz047.txt
 description = Barton County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz047.txt
 station = ('kgbd', 0.0027090)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz047.txt
 
@@ -23903,17 +23903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz047.txt
 centroid = (0.6753831, -1.7139971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz048.txt
 description = Ellsworth County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz048.txt
 station = ('klyo', 0.0061823)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz048.txt
 
@@ -23921,17 +23921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz048.txt
 centroid = (0.6769068, -1.7043158)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz049.txt
 description = Saline County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz049.txt
 station = ('ksln', 0.0000100)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz049.txt
 
@@ -23939,17 +23939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz049.txt
 centroid = (0.6692832, -1.7139325)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz050.txt
 description = Rice County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz050.txt
 station = ('klyo', 0.0003610)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz050.txt
 
@@ -23957,17 +23957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz050.txt
 centroid = (0.6700598, -1.7042791)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz051.txt
 description = McPherson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz051.txt
 station = ('kmpr', 0.0009050)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz051.txt
 
@@ -23975,17 +23975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz051.txt
 centroid = (0.6694874, -1.6946606)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz052.txt
 description = Marion County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz052.txt
 station = ('kewk', 0.0059653)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz052.txt
 
@@ -23993,17 +23993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz052.txt
 centroid = (0.6684960, -1.6858833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz053.txt
 description = Chase County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz053.txt
 station = ('kemp', 0.0054229)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz053.txt
 
@@ -24011,17 +24011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz053.txt
 centroid = (0.6711891, -1.6781812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz054.txt
 description = Lyon County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz054.txt
 station = ('kemp', 0.0022416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz054.txt
 
@@ -24029,17 +24029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz054.txt
 centroid = (0.6746116, -1.6707496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz055.txt
 description = Osage County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz055.txt
 station = ('kfoe', 0.0050136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz055.txt
 
@@ -24047,17 +24047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz055.txt
 centroid = (0.6730792, -1.6630527)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz056.txt
 description = Franklin County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz056.txt
 station = ('kowi', 0.0006372)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz056.txt
 
@@ -24065,17 +24065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz056.txt
 centroid = (0.6730618, -1.6552371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz057.txt
 description = Miami County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz057.txt
 station = ('kixd', 0.0044596)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz057.txt
 
@@ -24083,17 +24083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz057.txt
 centroid = (0.6673615, -1.6708770)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz058.txt
 description = Coffey County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz058.txt
 station = ('kukl', 0.0011501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz058.txt
 
@@ -24101,17 +24101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz058.txt
 centroid = (0.6669654, -1.6631818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz059.txt
 description = Anderson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz059.txt
 station = ('kowi', 0.0056886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz059.txt
 
@@ -24119,17 +24119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz059.txt
 centroid = (0.6669304, -1.6553209)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz060.txt
 description = Linn County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz060.txt
 station = ('kfsk', 0.0072943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz060.txt
 
@@ -24137,17 +24137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz060.txt
 centroid = (0.6632094, -1.7765933)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz061.txt
 description = Hamilton County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz061.txt
 station = ('k3k3', 0.0006363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz061.txt
 
@@ -24155,17 +24155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz061.txt
 centroid = (0.6632286, -1.7683659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz062.txt
 description = Kearny County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz062.txt
 station = ('k3k3', 0.0058625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz062.txt
 
@@ -24173,17 +24173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz062.txt
 centroid = (0.6640000, -1.7581906)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz063.txt
 description = Finney County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz063.txt
 station = ('kgck', 0.0022467)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz063.txt
 
@@ -24191,17 +24191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz063.txt
 centroid = (0.6647523, -1.7435473)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz064.txt
 description = Hodgeman County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz064.txt
 station = ('kddc', 0.0056791)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz064.txt
 
@@ -24209,17 +24209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz064.txt
 centroid = (0.6663911, -1.7320089)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz065.txt
 description = Pawnee County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz065.txt
 station = ('kgbd', 0.0058639)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz065.txt
 
@@ -24227,17 +24227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz065.txt
 centroid = (0.6637679, -1.7229454)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz066.txt
 description = Stafford County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz066.txt
 station = ('kptt', 0.0057961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz066.txt
 
@@ -24245,17 +24245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz066.txt
 centroid = (0.6624031, -1.7119254)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz067.txt
 description = Reno County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz067.txt
 station = ('khut', 0.0036122)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz067.txt
 
@@ -24263,17 +24263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz067.txt
 centroid = (0.6639791, -1.7004289)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz068.txt
 description = Harvey County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz068.txt
 station = ('kewk', 0.0019837)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz068.txt
 
@@ -24281,17 +24281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz068.txt
 centroid = (0.6594063, -1.6901611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz069.txt
 description = Butler County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz069.txt
 station = ('keqa', 0.0003215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz069.txt
 
@@ -24299,17 +24299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz069.txt
 centroid = (0.6610923, -1.6795775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz070.txt
 description = Greenwood County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz070.txt
 station = ('k13k', 0.0009327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz070.txt
 
@@ -24317,17 +24317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz070.txt
 centroid = (0.6612477, -1.6709817)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz071.txt
 description = Woodson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc207.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc207.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc207.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc207.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc207.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz071.txt
 station = ('kcnu', 0.0052254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc207.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz071.txt
 
@@ -24335,17 +24335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz071.txt
 centroid = (0.6612319, -1.6633232)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz072.txt
 description = Allen County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz072.txt
 station = ('kk88', 0.0012026)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz072.txt
 
@@ -24353,17 +24353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz072.txt
 centroid = (0.6606979, -1.6554326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz073.txt
 description = Bourbon County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz073.txt
 station = ('kfsk', 0.0014819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz073.txt
 
@@ -24371,17 +24371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz073.txt
 centroid = (0.6555980, -1.7764694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz074.txt
 description = Stanton County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz074.txt
 station = ('kjhn', 0.0007899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz074.txt
 
@@ -24389,17 +24389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz074.txt
 centroid = (0.6555841, -1.7681582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz075.txt
 description = Grant County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz075.txt
 station = ('kuls', 0.0011686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz075.txt
 
@@ -24407,17 +24407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz075.txt
 centroid = (0.6555858, -1.7605346)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz076.txt
 description = Haskell County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz076.txt
 station = ('k19s', 0.0012591)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz076.txt
 
@@ -24425,17 +24425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz076.txt
 centroid = (0.6586558, -1.7529703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz077.txt
 description = Gray County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz077.txt
 station = ('kgck', 0.0049479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz077.txt
 
@@ -24443,17 +24443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz077.txt
 centroid = (0.6578443, -1.7433727)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz078.txt
 description = Ford County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz078.txt
 station = ('kddc', 0.0017012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz078.txt
 
@@ -24461,17 +24461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz078.txt
 centroid = (0.6612634, -1.7333214)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz079.txt
 description = Edwards County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz079.txt
 station = ('kddc', 0.0092686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz079.txt
 
@@ -24479,17 +24479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz079.txt
 centroid = (0.6555143, -1.7328676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz080.txt
 description = Kiowa County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz080.txt
 station = ('kptt', 0.0078114)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz080.txt
 
@@ -24497,17 +24497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz080.txt
 centroid = (0.6570781, -1.7233311)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz081.txt
 description = Pratt County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz081.txt
 station = ('kptt', 0.0009223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz081.txt
 
@@ -24515,17 +24515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz081.txt
 centroid = (0.6555265, -1.7128033)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz082.txt
 description = Kingman County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz082.txt
 station = ('kp28', 0.0074832)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz082.txt
 
@@ -24533,17 +24533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz082.txt
 centroid = (0.6577238, -1.7010171)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz083.txt
 description = Sedgwick County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz083.txt
 station = ('kict', 0.0007184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz083.txt
 
@@ -24551,17 +24551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz083.txt
 centroid = (0.6491124, -1.7767330)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz084.txt
 description = Morton County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz084.txt
 station = ('keha', 0.0035395)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz084.txt
 
@@ -24569,17 +24569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz084.txt
 centroid = (0.6491298, -1.7682297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz085.txt
 description = Stevens County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz085.txt
 station = ('khqg', 0.0009656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz085.txt
 
@@ -24587,17 +24587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz085.txt
 centroid = (0.6491455, -1.7601872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz086.txt
 description = Seward County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz086.txt
 station = ('klbl', 0.0029720)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz086.txt
 
@@ -24605,17 +24605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz086.txt
 centroid = (0.6499292, -1.7517206)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz087.txt
 description = Meade County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz087.txt
 station = ('k19s', 0.0078925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz087.txt
 
@@ -24623,17 +24623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz087.txt
 centroid = (0.6498821, -1.7421929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz088.txt
 description = Clark County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz088.txt
 station = ('kddc', 0.0094895)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz088.txt
 
@@ -24641,17 +24641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz088.txt
 centroid = (0.6491106, -1.7326215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz089.txt
 description = Comanche County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz089.txt
 station = ('kavk', 0.0111223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz089.txt
 
@@ -24659,17 +24659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz089.txt
 centroid = (0.6497669, -1.7223747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz090.txt
 description = Barber County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz090.txt
 station = ('kp28', 0.0020998)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz090.txt
 
@@ -24677,17 +24677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz090.txt
 centroid = (0.6491159, -1.7117404)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz091.txt
 description = Harper County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz091.txt
 station = ('kp28', 0.0067849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz091.txt
 
@@ -24695,17 +24695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz091.txt
 centroid = (0.6499135, -1.7012859)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz092.txt
 description = Sumner County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz092.txt
 station = ('kegt', 0.0019414)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz092.txt
 
@@ -24713,17 +24713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz092.txt
 centroid = (0.6499205, -1.6901332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz093.txt
 description = Cowley County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz093.txt
 station = ('kwld', 0.0029914)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz093.txt
 
@@ -24731,17 +24731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz093.txt
 centroid = (0.6536904, -1.6797764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz094.txt
 description = Elk County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz094.txt
 station = ('k13k', 0.0069758)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz094.txt
 
@@ -24749,17 +24749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz094.txt
 centroid = (0.6555334, -1.6710376)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz095.txt
 description = Wilson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc205.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc205.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc205.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc205.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc205.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz095.txt
 station = ('kcnu', 0.0040546)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc205.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz095.txt
 
@@ -24767,17 +24767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz095.txt
 centroid = (0.6555212, -1.6634175)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz096.txt
 description = Neosho County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz096.txt
 station = ('kcnu', 0.0030846)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz096.txt
 
@@ -24785,17 +24785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz096.txt
 centroid = (0.6546259, -1.6554762)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz097.txt
 description = Crawford County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz097.txt
 station = ('kpts', 0.0019525)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz097.txt
 
@@ -24803,17 +24803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz097.txt
 centroid = (0.6483916, -1.6797974)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz098.txt
 description = Chautauqua County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz098.txt
 station = ('kbvo', 0.0074130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz098.txt
 
@@ -24821,17 +24821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz098.txt
 centroid = (0.6491316, -1.6710288)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz099.txt
 description = Montgomery County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz099.txt
 station = ('kidp', 0.0007732)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz099.txt
 
@@ -24839,17 +24839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz099.txt
 centroid = (0.6491106, -1.6632569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz100.txt
 description = Labette County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz100.txt
 station = ('kppf', 0.0037483)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz100.txt
 
@@ -24857,17 +24857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz100.txt
 centroid = (0.6487267, -1.6553785)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz101.txt
 description = Cherokee County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz101.txt
 station = ('kmio', 0.0045759)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz101.txt
 
@@ -24875,17 +24875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz101.txt
 centroid = (0.6944403, -1.6606284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz102.txt
 description = Doniphan County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz102.txt
 station = ('kstj', 0.0031130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz102.txt
 
@@ -24893,17 +24893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz102.txt
 centroid = (0.6841568, -1.6587243)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz103.txt
 description = Leavenworth County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz103.txt
 station = ('klwc', 0.0040027)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz103.txt
 
@@ -24911,17 +24911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz103.txt
 centroid = (0.6826768, -1.6539543)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz104.txt
 description = Wyandotte County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc209.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc209.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc209.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc209.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc209.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz104.txt
 station = ('kmkc', 0.0022293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc209.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz104.txt
 
@@ -24929,17 +24929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz104.txt
 centroid = (0.6786503, -1.6549613)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ks/ksz105.txt
 description = Johnson County, KS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ks/ksc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ks/ksc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ks/ksz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ks/ksz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ks/ksc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ks/ksc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ks/ksc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ks/ksz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ks/ksz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz105.txt
 station = ('kixd', 0.0014357)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz105.txt
 
@@ -24947,17 +24947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz105.txt
 centroid = (0.6379894, -1.5566120)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz001.txt
 description = Fulton County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz001.txt
 station = ('kucy', 0.0041320)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz001.txt
 
@@ -24965,17 +24965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz001.txt
 centroid = (0.6401536, -1.5529259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz002.txt
 description = Hickman County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz002.txt
 station = ('kucy', 0.0051730)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz002.txt
 
@@ -24983,17 +24983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz002.txt
 centroid = (0.6432097, -1.5528351)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz003.txt
 description = Carlisle County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz003.txt
 station = ('kpah', 0.0044623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz003.txt
 
@@ -25001,17 +25001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz003.txt
 centroid = (0.6467911, -1.5533291)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz004.txt
 description = Ballard County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz004.txt
 station = ('kcir', 0.0030693)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz004.txt
 
@@ -25019,17 +25019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz004.txt
 centroid = (0.6467126, -1.5483287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz005.txt
 description = McCracken County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz005.txt
 station = ('kpah', 0.0007548)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz005.txt
 
@@ -25037,17 +25037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz005.txt
 centroid = (0.6409373, -1.5472553)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz006.txt
 description = Graves County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz006.txt
 station = ('kcey', 0.0040272)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz006.txt
 
@@ -25055,17 +25055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz006.txt
 centroid = (0.6494318, -1.5420612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz007.txt
 description = Livingston County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz007.txt
 station = ('kgda', 0.0040434)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz007.txt
 
@@ -25073,17 +25073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz007.txt
 centroid = (0.6437368, -1.5416371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz008.txt
 description = Marshall County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz008.txt
 station = ('kcey', 0.0038669)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz008.txt
 
@@ -25091,17 +25091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz008.txt
 centroid = (0.6391588, -1.5406423)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz009.txt
 description = Calloway County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz009.txt
 station = ('kcey', 0.0015992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz009.txt
 
@@ -25109,17 +25109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz009.txt
 centroid = (0.6519276, -1.5375862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz010.txt
 description = Crittenden County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz010.txt
 station = ('kgda', 0.0003356)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz010.txt
 
@@ -25127,17 +25127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz010.txt
 centroid = (0.6461052, -1.5373419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz011.txt
 description = Lyon County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz011.txt
 station = ('kgda', 0.0055479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz011.txt
 
@@ -25145,17 +25145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz011.txt
 centroid = (0.6423929, -1.5336802)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz012.txt
 description = Trigg County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc221.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc221.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc221.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc221.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc221.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz012.txt
 station = ('khop', 0.0057641)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc221.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz012.txt
 
@@ -25163,17 +25163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz012.txt
 centroid = (0.6483078, -1.5335842)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz013.txt
 description = Caldwell County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz013.txt
 station = ('kgda', 0.0047330)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz013.txt
 
@@ -25181,17 +25181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz013.txt
 centroid = (0.6572631, -1.5349350)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz014.txt
 description = Union County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc225.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc225.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc225.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc225.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc225.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz014.txt
 station = ('ktwt', 0.0020545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc225.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz014.txt
 
@@ -25199,17 +25199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz014.txt
 centroid = (0.6548179, -1.5303605)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz015.txt
 description = Webster County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc233.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc233.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc233.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc233.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc233.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz015.txt
 station = ('ktwt', 0.0037384)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc233.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz015.txt
 
@@ -25217,17 +25217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz015.txt
 centroid = (0.6511614, -1.5278769)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz016.txt
 description = Hopkins County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz016.txt
 station = ('k2i0', 0.0021203)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz016.txt
 
@@ -25235,17 +25235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz016.txt
 centroid = (0.6439235, -1.5269955)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz017.txt
 description = Christian County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz017.txt
 station = ('khvc', 0.0008138)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz017.txt
 
@@ -25253,17 +25253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz017.txt
 centroid = (0.6596664, -1.5284354)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz018.txt
 description = Henderson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz018.txt
 station = ('kehr', 0.0015646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz018.txt
 
@@ -25271,17 +25271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz018.txt
 centroid = (0.6585441, -1.5199601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz019.txt
 description = Daviess County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz019.txt
 station = ('kowb', 0.0011048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz019.txt
 
@@ -25289,17 +25289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz019.txt
 centroid = (0.6550064, -1.5230371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz020.txt
 description = McLean County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz020.txt
 station = ('k2i0', 0.0035756)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz020.txt
 
@@ -25307,17 +25307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz020.txt
 centroid = (0.6495365, -1.5209166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz021.txt
 description = Muhlenberg County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz021.txt
 station = ('km21', 0.0002704)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz021.txt
 
@@ -25325,17 +25325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz021.txt
 centroid = (0.6429025, -1.5215623)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz022.txt
 description = Todd County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc219.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc219.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc219.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc219.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc219.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz022.txt
 station = ('khvc', 0.0038729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc219.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz022.txt
 
@@ -25343,17 +25343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz022.txt
 centroid = (0.6604588, -1.5145618)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz023.txt
 description = Hancock County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz023.txt
 station = ('kky8', 0.0022448)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz023.txt
 
@@ -25361,17 +25361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz023.txt
 centroid = (0.6592667, -1.5084759)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz024.txt
 description = Breckinridge County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz024.txt
 station = ('kekx', 0.0071257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz024.txt
 
@@ -25379,17 +25379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz024.txt
 centroid = (0.6626928, -1.5047688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz025.txt
 description = Meade County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz025.txt
 station = ('kftk', 0.0036519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz025.txt
 
@@ -25397,17 +25397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz025.txt
 centroid = (0.6541197, -1.5158010)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz026.txt
 description = Ohio County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz026.txt
 station = ('km21', 0.0061277)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz026.txt
 
@@ -25415,17 +25415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz026.txt
 centroid = (0.6538143, -1.5069853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz027.txt
 description = Grayson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz027.txt
 station = ('kekx', 0.0070019)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz027.txt
 
@@ -25433,17 +25433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz027.txt
 centroid = (0.6579525, -1.5003461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz028.txt
 description = Hardin County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz028.txt
 station = ('kekx', 0.0005708)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz028.txt
 
@@ -25451,17 +25451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz028.txt
 centroid = (0.6627015, -1.4956756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz029.txt
 description = Bullitt County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz029.txt
 station = ('ksdf', 0.0037587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz029.txt
 
@@ -25469,17 +25469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz029.txt
 centroid = (0.6664924, -1.4950403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz030.txt
 description = Jefferson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz030.txt
 station = ('klou', 0.0008112)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz030.txt
 
@@ -25487,17 +25487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz030.txt
 centroid = (0.6701977, -1.4913577)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz031.txt
 description = Oldham County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz031.txt
 station = ('kjvy', 0.0040079)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz031.txt
 
@@ -25505,17 +25505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz031.txt
 centroid = (0.6739240, -1.4894186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz032.txt
 description = Trimble County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc223.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc223.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc223.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc223.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc223.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz032.txt
 station = ('kims', 0.0030871)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc223.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz032.txt
 
@@ -25523,17 +25523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz032.txt
 centroid = (0.6710512, -1.4856051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz033.txt
 description = Henry County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz033.txt
 station = ('kfft', 0.0055125)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz033.txt
 
@@ -25541,17 +25541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz033.txt
 centroid = (0.6669863, -1.4869298)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz034.txt
 description = Shelby County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc211.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc211.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc211.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc211.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc211.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz034.txt
 station = ('kfft', 0.0040822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc211.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz034.txt
 
@@ -25559,17 +25559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz034.txt
 centroid = (0.6673982, -1.4813831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz035.txt
 description = Franklin County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz035.txt
 station = ('kfft', 0.0010231)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz035.txt
 
@@ -25577,17 +25577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz035.txt
 centroid = (0.6683128, -1.4762675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz036.txt
 description = Scott County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc209.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc209.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc209.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc209.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc209.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz036.txt
 station = ('k27k', 0.0022745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc209.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz036.txt
 
@@ -25595,17 +25595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz036.txt
 centroid = (0.6709360, -1.4718623)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz037.txt
 description = Harrison County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz037.txt
 station = ('k27k', 0.0038857)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz037.txt
 
@@ -25613,17 +25613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz037.txt
 centroid = (0.6637923, -1.4892528)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz038.txt
 description = Spencer County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc215.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc215.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc215.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc215.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc215.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz038.txt
 station = ('kbry', 0.0044823)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc215.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz038.txt
 
@@ -25631,17 +25631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz038.txt
 centroid = (0.6632949, -1.4833710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz039.txt
 description = Anderson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz039.txt
 station = ('kfft', 0.0033698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz039.txt
 
@@ -25649,17 +25649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz039.txt
 centroid = (0.6639634, -1.4790531)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz040.txt
 description = Woodford County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc239.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc239.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc239.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc239.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc239.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz040.txt
 station = ('klex', 0.0019788)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc239.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz040.txt
 
@@ -25667,17 +25667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz040.txt
 centroid = (0.6639634, -1.4740841)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz041.txt
 description = Fayette County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz041.txt
 station = ('klex', 0.0019473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz041.txt
 
@@ -25685,17 +25685,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz041.txt
 centroid = (0.6668345, -1.4698657)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz042.txt
 description = Bourbon County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz042.txt
 station = ('k27k', 0.0030224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz042.txt
 
@@ -25703,17 +25703,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz042.txt
 centroid = (0.6690824, -1.4663436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz043.txt
 description = Nicholas County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz043.txt
 station = ('kiob', 0.0048680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz043.txt
 
@@ -25721,17 +25721,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz043.txt
 centroid = (0.6696846, -1.4607830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz044.txt
 description = Fleming County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz044.txt
 station = ('kfgx', 0.0030640)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz044.txt
 
@@ -25739,17 +25739,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz044.txt
 centroid = (0.6598235, -1.4916666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz045.txt
 description = Nelson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz045.txt
 station = ('kbry', 0.0004878)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz045.txt
 
@@ -25757,17 +25757,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz045.txt
 centroid = (0.6589211, -1.4865790)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz046.txt
 description = Washington County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz046.txt
 station = ('k6i2', 0.0022887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz046.txt
 
@@ -25775,17 +25775,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz046.txt
 centroid = (0.6599282, -1.4813377)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz047.txt
 description = Mercer County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz047.txt
 station = ('kdvk', 0.0042733)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz047.txt
 
@@ -25793,17 +25793,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz047.txt
 centroid = (0.6609911, -1.4762152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz048.txt
 description = Jessamine County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz048.txt
 station = ('klex', 0.0028280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz048.txt
 
@@ -25811,17 +25811,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz048.txt
 centroid = (0.6627172, -1.4686509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz049.txt
 description = Clark County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz049.txt
 station = ('kiob', 0.0027653)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz049.txt
 
@@ -25829,17 +25829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz049.txt
 centroid = (0.6638115, -1.4645616)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz050.txt
 description = Montgomery County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz050.txt
 station = ('kiob', 0.0010079)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz050.txt
 
@@ -25847,17 +25847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz050.txt
 centroid = (0.6657541, -1.4615876)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz051.txt
 description = Bath County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz051.txt
 station = ('ksym', 0.0024556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz051.txt
 
@@ -25865,17 +25865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz051.txt
 centroid = (0.6666512, -1.4559729)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz052.txt
 description = Rowan County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc205.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc205.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc205.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc205.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc205.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz052.txt
 station = ('ksym', 0.0023069)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc205.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz052.txt
 
@@ -25883,17 +25883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz052.txt
 centroid = (0.6552961, -1.4957123)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz053.txt
 description = Larue County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz053.txt
 station = ('kekx', 0.0039806)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz053.txt
 
@@ -25901,17 +25901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz053.txt
 centroid = (0.6554148, -1.4882353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz054.txt
 description = Marion County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz054.txt
 station = ('k6i2', 0.0014651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz054.txt
 
@@ -25919,17 +25919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz054.txt
 centroid = (0.6566697, -1.4812033)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz055.txt
 description = Boyle County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz055.txt
 station = ('kdvk', 0.0014991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz055.txt
 
@@ -25937,17 +25937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz055.txt
 centroid = (0.6569349, -1.4754595)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz056.txt
 description = Garrard County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz056.txt
 station = ('kdvk', 0.0034378)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz056.txt
 
@@ -25955,17 +25955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz056.txt
 centroid = (0.6583417, -1.4709286)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz057.txt
 description = Madison County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz057.txt
 station = ('krga', 0.0017313)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz057.txt
 
@@ -25973,17 +25973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz057.txt
 centroid = (0.6578565, -1.4654535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz058.txt
 description = Estill County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz058.txt
 station = ('kiob', 0.0063862)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz058.txt
 
@@ -25991,17 +25991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz058.txt
 centroid = (0.6602790, -1.4630030)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz059.txt
 description = Powell County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz059.txt
 station = ('kiob', 0.0045028)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz059.txt
 
@@ -26009,17 +26009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz059.txt
 centroid = (0.6622024, -1.4590761)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz060.txt
 description = Menifee County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz060.txt
 station = ('ksym', 0.0047777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz060.txt
 
@@ -26027,17 +26027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz060.txt
 centroid = (0.6493916, -1.5128793)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz061.txt
 description = Butler County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz061.txt
 station = ('kbwg', 0.0055910)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz061.txt
 
@@ -26045,17 +26045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz061.txt
 centroid = (0.6494143, -1.5051458)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz062.txt
 description = Edmonson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz062.txt
 station = ('kbwg', 0.0048987)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz062.txt
 
@@ -26063,17 +26063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz062.txt
 centroid = (0.6510061, -1.4989708)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz063.txt
 description = Hart County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz063.txt
 station = ('kglw', 0.0047787)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz063.txt
 
@@ -26081,17 +26081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz063.txt
 centroid = (0.6503777, -1.4931833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz064.txt
 description = Green County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz064.txt
 station = ('kaas', 0.0037628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz064.txt
 
@@ -26099,17 +26099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz064.txt
 centroid = (0.6521667, -1.4892528)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz065.txt
 description = Taylor County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc217.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc217.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc217.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc217.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc217.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz065.txt
 station = ('kaas', 0.0002930)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc217.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz065.txt
 
@@ -26117,17 +26117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz065.txt
 centroid = (0.6513970, -1.4822785)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz066.txt
 description = Casey County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz066.txt
 station = ('kdvk', 0.0049686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz066.txt
 
@@ -26135,17 +26135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz066.txt
 centroid = (0.6537166, -1.4776080)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz067.txt
 description = Lincoln County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz067.txt
 station = ('kdvk', 0.0026786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz067.txt
 
@@ -26153,17 +26153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz067.txt
 centroid = (0.6521458, -1.4715918)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz068.txt
 description = Rockcastle County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc203.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc203.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc203.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc203.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc203.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz068.txt
 station = ('krga', 0.0046410)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc203.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz068.txt
 
@@ -26171,17 +26171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz068.txt
 centroid = (0.6530987, -1.4661778)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz069.txt
 description = Jackson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz069.txt
 station = ('krga', 0.0058298)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz069.txt
 
@@ -26189,17 +26189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz069.txt
 centroid = (0.6433231, -1.5163211)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz070.txt
 description = Logan County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz070.txt
 station = ('km91', 0.0056590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz070.txt
 
@@ -26207,17 +26207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz070.txt
 centroid = (0.6456601, -1.5083816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz071.txt
 description = Warren County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc227.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc227.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc227.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc227.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc227.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz071.txt
 station = ('kbwg', 0.0004808)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc227.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz071.txt
 
@@ -26225,17 +26225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz071.txt
 centroid = (0.6412671, -1.5111462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz072.txt
 description = Simpson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc213.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc213.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc213.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc213.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc213.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz072.txt
 station = ('k1m5', 0.0029929)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc213.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz072.txt
 
@@ -26243,17 +26243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz072.txt
 centroid = (0.6414312, -1.5043063)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz073.txt
 description = Allen County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz073.txt
 station = ('k1m5', 0.0048698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz073.txt
 
@@ -26261,17 +26261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz073.txt
 centroid = (0.6451714, -1.4998243)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz074.txt
 description = Barren County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz074.txt
 station = ('kglw', 0.0011863)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz074.txt
 
@@ -26279,17 +26279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz074.txt
 centroid = (0.6407488, -1.4960334)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz075.txt
 description = Monroe County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz075.txt
 station = ('kglw', 0.0064852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz075.txt
 
@@ -26297,17 +26297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz075.txt
 centroid = (0.6456060, -1.4945097)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz076.txt
 description = Metcalf, Metcalfe County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz076.txt
 station = ('kglw', 0.0045794)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz076.txt
 
@@ -26315,17 +26315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz076.txt
 centroid = (0.6475887, -1.4884273)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz077.txt
 description = Adair County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz077.txt
 station = ('kaas', 0.0044546)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz077.txt
 
@@ -26333,17 +26333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz077.txt
 centroid = (0.6456165, -1.4845526)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz078.txt
 description = Russell County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc207.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc207.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc207.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc207.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc207.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz078.txt
 station = ('kekq', 0.0036881)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc207.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz078.txt
 
@@ -26351,17 +26351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz078.txt
 centroid = (0.6475852, -1.4761489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz079.txt
 description = Pulaski County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz079.txt
 station = ('ksme', 0.0010158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz079.txt
 
@@ -26369,17 +26369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz079.txt
 centroid = (0.6477039, -1.4681326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz080.txt
 description = Laurel County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz080.txt
 station = ('kloz', 0.0008572)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz080.txt
 
@@ -26387,17 +26387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz080.txt
 centroid = (0.6420473, -1.4903087)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz081.txt
 description = Cumberland County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz081.txt
 station = ('k8a3', 0.0066242)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz081.txt
 
@@ -26405,17 +26405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz081.txt
 centroid = (0.6410158, -1.4859053)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz082.txt
 description = Clinton County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz082.txt
 station = ('kekq', 0.0045042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz082.txt
 
@@ -26423,17 +26423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz082.txt
 centroid = (0.6423039, -1.4805366)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz083.txt
 description = Wayne County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc231.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc231.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc231.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc231.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc231.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz083.txt
 station = ('kekq', 0.0010180)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc231.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz083.txt
 
@@ -26441,17 +26441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz083.txt
 centroid = (0.6411834, -1.4745257)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz084.txt
 description = McCreary County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz084.txt
 station = ('kbyl', 0.0041055)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz084.txt
 
@@ -26459,17 +26459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz084.txt
 centroid = (0.6415516, -1.4686108)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz085.txt
 description = Whitley County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc235.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc235.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc235.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc235.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc235.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz085.txt
 station = ('kbyl', 0.0009944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc235.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz085.txt
 
@@ -26477,17 +26477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz085.txt
 centroid = (0.6438642, -1.4635266)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz086.txt
 description = Knox County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz086.txt
 station = ('kloz', 0.0044835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz086.txt
 
@@ -26495,17 +26495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz086.txt
 centroid = (0.6410717, -1.4603868)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz087.txt
 description = Bell County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz087.txt
 station = ('k1a6', 0.0022760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz087.txt
 
@@ -26513,17 +26513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz087.txt
 centroid = (0.6432760, -1.4524264)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz088.txt
 description = Harlan County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz088.txt
 station = ('ki35', 0.0019642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz088.txt
 
@@ -26531,17 +26531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz088.txt
 centroid = (0.6748822, -1.4856853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz089.txt
 description = Carroll County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz089.txt
 station = ('kims', 0.0049209)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz089.txt
 
@@ -26549,17 +26549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz089.txt
 centroid = (0.6764355, -1.4810724)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz090.txt
 description = Gallatin County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz090.txt
 station = ('kcvg', 0.0057452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz090.txt
 
@@ -26567,17 +26567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz090.txt
 centroid = (0.6801548, -1.4787808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz091.txt
 description = Boone County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz091.txt
 station = ('kcvg', 0.0016246)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz091.txt
 
@@ -26585,17 +26585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz091.txt
 centroid = (0.6795143, -1.4753809)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz092.txt
 description = Kenton County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz092.txt
 station = ('kcvg', 0.0027261)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz092.txt
 
@@ -26603,17 +26603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz092.txt
 centroid = (0.6797447, -1.4726966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz093.txt
 description = Campbell County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz093.txt
 station = ('kluk', 0.0027266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz093.txt
 
@@ -26621,17 +26621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz093.txt
 centroid = (0.6722956, -1.4805279)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz094.txt
 description = Owen County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz094.txt
 station = ('kfft', 0.0059528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz094.txt
 
@@ -26639,17 +26639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz094.txt
 centroid = (0.6745488, -1.4769762)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz095.txt
 description = Grant County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz095.txt
 station = ('kcvg', 0.0070257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz095.txt
 
@@ -26657,17 +26657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz095.txt
 centroid = (0.6753674, -1.4723632)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz096.txt
 description = Pendleton County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz096.txt
 station = ('ki69', 0.0069833)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz096.txt
 
@@ -26675,17 +26675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz096.txt
 centroid = (0.6752469, -1.4676491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz097.txt
 description = Bracken County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz097.txt
 station = ('kfgx', 0.0053793)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz097.txt
 
@@ -26693,17 +26693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz097.txt
 centroid = (0.6722799, -1.4669859)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz098.txt
 description = Robertson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz098.txt
 station = ('kfgx', 0.0042339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz098.txt
 
@@ -26711,17 +26711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz098.txt
 centroid = (0.6736133, -1.4630048)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz099.txt
 description = Mason County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz099.txt
 station = ('kfgx', 0.0014416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz099.txt
 
@@ -26729,17 +26729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz099.txt
 centroid = (0.6725050, -1.4552224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz100.txt
 description = Lewis County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz100.txt
 station = ('kfgx', 0.0049902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz100.txt
 
@@ -26747,17 +26747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz100.txt
 centroid = (0.6727476, -1.4472672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz101.txt
 description = Greenup County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz101.txt
 station = ('kdwu', 0.0025204)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz101.txt
 
@@ -26765,17 +26765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz101.txt
 centroid = (0.6687770, -1.4494872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz102.txt
 description = Carter County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz102.txt
 station = ('kdwu', 0.0059295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz102.txt
 
@@ -26783,17 +26783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz102.txt
 centroid = (0.6695013, -1.4431726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz103.txt
 description = Boyd County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz103.txt
 station = ('khts', 0.0018885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz103.txt
 
@@ -26801,17 +26801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz103.txt
 centroid = (0.6652829, -1.4503267)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz104.txt
 description = Elliott County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz104.txt
 station = ('ksym', 0.0069343)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz104.txt
 
@@ -26819,17 +26819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz104.txt
 centroid = (0.6644102, -1.4439929)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz105.txt
 description = Lawrence County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz105.txt
 station = ('ksjs', 0.0056932)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz105.txt
 
@@ -26837,17 +26837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz105.txt
 centroid = (0.6618690, -1.4531419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz106.txt
 description = Morgan County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz106.txt
 station = ('kjkl', 0.0059695)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz106.txt
 
@@ -26855,17 +26855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz106.txt
 centroid = (0.6605495, -1.4456807)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz107.txt
 description = Johnson County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz107.txt
 station = ('ksjs', 0.0031622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz107.txt
 
@@ -26873,17 +26873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz107.txt
 centroid = (0.6586750, -1.4572295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz108.txt
 description = Wolfe County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc237.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc237.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc237.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc237.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc237.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz108.txt
 station = ('kjkl', 0.0036541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc237.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz108.txt
 
@@ -26891,17 +26891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz108.txt
 centroid = (0.6581043, -1.4497543)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz109.txt
 description = Magoffin County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz109.txt
 station = ('kjkl', 0.0040919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz109.txt
 
@@ -26909,17 +26909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz109.txt
 centroid = (0.6554968, -1.4441849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz110.txt
 description = Floyd County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz110.txt
 station = ('kpbx', 0.0024820)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz110.txt
 
@@ -26927,17 +26927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz110.txt
 centroid = (0.6561513, -1.4611251)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz111.txt
 description = Lee County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz111.txt
 station = ('kjkl', 0.0055305)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz111.txt
 
@@ -26945,17 +26945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz111.txt
 centroid = (0.6548755, -1.4542799)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz112.txt
 description = Breathitt County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz112.txt
 station = ('kjkl', 0.0010823)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz112.txt
 
@@ -26963,17 +26963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz112.txt
 centroid = (0.6519503, -1.4478204)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz113.txt
 description = Knott County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz113.txt
 station = ('kcpf', 0.0042738)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz113.txt
 
@@ -26981,17 +26981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz113.txt
 centroid = (0.6530900, -1.4605474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz114.txt
 description = Owsley County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz114.txt
 station = ('kcpf', 0.0059030)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz114.txt
 
@@ -26999,17 +26999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz114.txt
 centroid = (0.6500357, -1.4524892)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz115.txt
 description = Perry County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz115.txt
 station = ('kcpf', 0.0025094)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz115.txt
 
@@ -27017,17 +27017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz115.txt
 centroid = (0.6485609, -1.4610954)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz116.txt
 description = Clay County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz116.txt
 station = ('kloz', 0.0050780)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz116.txt
 
@@ -27035,17 +27035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz116.txt
 centroid = (0.6474142, -1.4552747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz117.txt
 description = Leslie County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz117.txt
 station = ('ki35', 0.0041092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz117.txt
 
@@ -27053,17 +27053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz117.txt
 centroid = (0.6478872, -1.4460978)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz118.txt
 description = Letcher County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz118.txt
 station = ('klnp', 0.0050895)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz118.txt
 
@@ -27071,17 +27071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz118.txt
 centroid = (0.6597624, -1.4401270)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz119.txt
 description = Martin County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz119.txt
 station = ('ksjs', 0.0019190)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz119.txt
 
@@ -27089,17 +27089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz119.txt
 centroid = (0.6539574, -1.4380780)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ky/kyz120.txt
 description = Pike County, KY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ky/kyc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ky/kyc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ky/kyz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ky/kyz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ky/kyc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ky/kyc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ky/kyc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ky/kyz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ky/kyz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz120.txt
 station = ('kpbx', 0.0028637)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz120.txt
 
@@ -27107,17 +27107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz120.txt
 centroid = (0.5686230, -1.6385518)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz001.txt
 description = Caddo County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz001.txt
 station = ('kdtn', 0.0021051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz001.txt
 
@@ -27125,17 +27125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz001.txt
 centroid = (0.5703631, -1.6337189)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz002.txt
 description = Bossier County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz002.txt
 station = ('kbad', 0.0032590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz002.txt
 
@@ -27143,17 +27143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz002.txt
 centroid = (0.5709583, -1.6290031)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz003.txt
 description = Webster County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz003.txt
 station = ('kmne', 0.0012968)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz003.txt
 
@@ -27161,17 +27161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz003.txt
 centroid = (0.5728624, -1.6230812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz004.txt
 description = Claiborne County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz004.txt
 station = ('kmne', 0.0054048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz004.txt
 
@@ -27179,17 +27179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz004.txt
 centroid = (0.5690053, -1.6173041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz005.txt
 description = Lincoln County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz005.txt
 station = ('krsn', 0.0018910)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz005.txt
 
@@ -27197,17 +27197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz005.txt
 centroid = (0.5730248, -1.6122444)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz006.txt
 description = Union County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz006.txt
 station = ('krsn', 0.0063671)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz006.txt
 
@@ -27215,17 +27215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz006.txt
 centroid = (0.5728258, -1.6022419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz007.txt
 description = Morehouse County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz007.txt
 station = ('kbqp', 0.0016394)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz007.txt
 
@@ -27233,17 +27233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz007.txt
 centroid = (0.5722673, -1.5962205)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz008.txt
 description = West Carroll County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz008.txt
 station = ('kbqp', 0.0062671)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz008.txt
 
@@ -27251,17 +27251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz008.txt
 centroid = (0.5712916, -1.5923529)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz009.txt
 description = East Carroll County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz009.txt
 station = ('ktvr', 0.0073588)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz009.txt
 
@@ -27269,17 +27269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz009.txt
 centroid = (0.5594723, -1.6360245)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz010.txt
 description = De Soto County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz010.txt
 station = ('k3f3', 0.0005233)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz010.txt
 
@@ -27287,17 +27287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz010.txt
 centroid = (0.5601338, -1.6290903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz011.txt
 description = Red River County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz011.txt
 station = ('k3f3', 0.0063017)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz011.txt
 
@@ -27305,17 +27305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz011.txt
 centroid = (0.5645651, -1.6241336)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz012.txt
 description = Bienville County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz012.txt
 station = ('kmne', 0.0063165)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz012.txt
 
@@ -27323,17 +27323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz012.txt
 centroid = (0.5637763, -1.6154366)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz013.txt
 description = Jackson County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz013.txt
 station = ('krsn', 0.0037352)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz013.txt
 
@@ -27341,17 +27341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz013.txt
 centroid = (0.5668568, -1.6083994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz014.txt
 description = Ouachita County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz014.txt
 station = ('kmlu', 0.0019039)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz014.txt
 
@@ -27359,17 +27359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz014.txt
 centroid = (0.5657956, -1.6015770)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz015.txt
 description = Richland County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz015.txt
 station = ('kmlu', 0.0043312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz015.txt
 
@@ -27377,17 +27377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz015.txt
 centroid = (0.5648636, -1.5924855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz016.txt
 description = Madison County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz016.txt
 station = ('ktvr', 0.0031487)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz016.txt
 
@@ -27395,17 +27395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz016.txt
 centroid = (0.5508957, -1.6328375)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz017.txt
 description = Sabine County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz017.txt
 station = ('kaqv', 0.0023733)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz017.txt
 
@@ -27413,17 +27413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz017.txt
 centroid = (0.5536813, -1.6248370)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz018.txt
 description = Natchitoches County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz018.txt
 station = ('kier', 0.0002177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz018.txt
 
@@ -27431,17 +27431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz018.txt
 centroid = (0.5575315, -1.6168172)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz019.txt
 description = Winn County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz019.txt
 station = ('kier', 0.0077604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz019.txt
 
@@ -27449,17 +27449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz019.txt
 centroid = (0.5515188, -1.6154663)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz020.txt
 description = Grant County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz020.txt
 station = ('kesf', 0.0052009)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz020.txt
 
@@ -27467,17 +27467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz020.txt
 centroid = (0.5601146, -1.6077397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz021.txt
 description = Caldwell County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz021.txt
 station = ('kmlu', 0.0075097)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz021.txt
 
@@ -27485,17 +27485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz021.txt
 centroid = (0.5528627, -1.6085024)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz022.txt
 description = La Salle County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz022.txt
 station = ('kesf', 0.0052569)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz022.txt
 
@@ -27503,17 +27503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz022.txt
 centroid = (0.5608301, -1.6000096)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz023.txt
 description = Franklin County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz023.txt
 station = ('kmlu', 0.0085387)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz023.txt
 
@@ -27521,17 +27521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz023.txt
 centroid = (0.5526777, -1.6030343)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz024.txt
 description = Catahoula County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz024.txt
 station = ('k0r4', 0.0053786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz024.txt
 
@@ -27539,17 +27539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz024.txt
 centroid = (0.5585350, -1.5941837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz025.txt
 description = Tensas County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz025.txt
 station = ('khez', 0.0067462)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz025.txt
 
@@ -27557,17 +27557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz025.txt
 centroid = (0.5488327, -1.5994145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz026.txt
 description = Concordia County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz026.txt
 station = ('k0r4', 0.0028358)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz026.txt
 
@@ -27575,17 +27575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz026.txt
 centroid = (0.5429423, -1.6263711)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz027.txt
 description = Vernon County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz027.txt
 station = ('kpoe', 0.0010278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz027.txt
 
@@ -27593,17 +27593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz027.txt
 centroid = (0.5445183, -1.6150090)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz028.txt
 description = Rapides County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz028.txt
 station = ('kesf', 0.0049448)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz028.txt
 
@@ -27611,17 +27611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz028.txt
 centroid = (0.5423820, -1.6057256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz029.txt
 description = Avoyelles County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz029.txt
 station = ('kesf', 0.0071977)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz029.txt
 
@@ -27629,17 +27629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz029.txt
 centroid = (0.5349172, -1.6291497)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz030.txt
 description = Beauregard County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz030.txt
 station = ('kdri', 0.0031973)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz030.txt
 
@@ -27647,17 +27647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz030.txt
 centroid = (0.5349923, -1.6201525)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz031.txt
 description = Allen County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz031.txt
 station = ('kacp', 0.0026982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz031.txt
 
@@ -27665,17 +27665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz031.txt
 centroid = (0.5363222, -1.6127872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz032.txt
 description = Evangeline County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz032.txt
 station = ('kacp', 0.0042576)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz032.txt
 
@@ -27683,17 +27683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz032.txt
 centroid = (0.5340516, -1.6058041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz033.txt
 description = St. Landry County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz033.txt
 station = ('kopl', 0.0015741)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz033.txt
 
@@ -27701,17 +27701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz033.txt
 centroid = (0.5359854, -1.5987373)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz034.txt
 description = Pointe Coupee County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz034.txt
 station = ('khzr', 0.0018398)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz034.txt
 
@@ -27719,17 +27719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz034.txt
 centroid = (0.5389542, -1.5955800)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz035.txt
 description = West Feliciana County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz035.txt
 station = ('khzr', 0.0029529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz035.txt
 
@@ -27737,17 +27737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz035.txt
 centroid = (0.5383486, -1.5890437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz036.txt
 description = East Feliciana County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz036.txt
 station = ('kbtr', 0.0056629)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz036.txt
 
@@ -27755,17 +27755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz036.txt
 centroid = (0.5379454, -1.5831934)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz037.txt
 description = St. Helena County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz037.txt
 station = ('khdc', 0.0068519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz037.txt
 
@@ -27773,17 +27773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz037.txt
 centroid = (0.5384934, -1.5715032)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz039.txt
 description = Washington County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz039.txt
 station = ('kbxa', 0.0027243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz039.txt
 
@@ -27791,17 +27791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz039.txt
 centroid = (0.5271994, -1.6068182)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz044.txt
 description = Lafayette County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz044.txt
 station = ('klft', 0.0009701)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz044.txt
 
@@ -27809,17 +27809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz044.txt
 centroid = (0.5275816, -1.6009329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz045.txt
 description = Upper St. Martin County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz045.txt
 station = ('kara', 0.0041422)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz045.txt
 
@@ -27827,17 +27827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz045.txt
 centroid = (0.5281105, -1.5943478)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz046.txt
 description = Iberville County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz046.txt
 station = ('kbtr', 0.0056586)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz046.txt
 
@@ -27845,17 +27845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz046.txt
 centroid = (0.5316866, -1.5937195)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz047.txt
 description = West Baton Rouge County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz047.txt
 station = ('kbtr', 0.0027437)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz047.txt
 
@@ -27863,17 +27863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz047.txt
 centroid = (0.5329939, -1.5899199)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz048.txt
 description = East Baton Rouge County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz048.txt
 station = ('kbtr', 0.0008209)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz048.txt
 
@@ -27881,17 +27881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz048.txt
 centroid = (0.5209214, -1.5929707)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz055.txt
 description = Lower St. Martin County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz055.txt
 station = ('kptn', 0.0024594)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz055.txt
 
@@ -27899,17 +27899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz055.txt
 centroid = (0.5218639, -1.5893422)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz056.txt
 description = Assumption County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz056.txt
 station = ('kreg', 0.0050943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz056.txt
 
@@ -27917,17 +27917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz056.txt
 centroid = (0.5240578, -1.5846926)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz057.txt
 description = St. James County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz057.txt
 station = ('kreg', 0.0033590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz057.txt
 
@@ -27935,17 +27935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz057.txt
 centroid = (0.5249811, -1.5803293)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz058.txt
 description = St. John The Baptist County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz058.txt
 station = ('kaps', 0.0005664)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz058.txt
 
@@ -27953,17 +27953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz058.txt
 centroid = (0.5188009, -1.5807569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz059.txt
 description = Upper Lafourche County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz059.txt
 station = ('khum', 0.0031249)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz059.txt
 
@@ -27971,17 +27971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz059.txt
 centroid = (0.5215672, -1.5771319)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz060.txt
 description = St. Charles County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz060.txt
 station = ('kmsy', 0.0026548)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz060.txt
 
@@ -27989,17 +27989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz060.txt
 centroid = (0.5220803, -1.5685972)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz064.txt
 description = Upper St. Bernard County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz064.txt
 station = ('knbg', 0.0025681)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz064.txt
 
@@ -28007,17 +28007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz064.txt
 centroid = (0.5172981, -1.5854274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz065.txt
 description = Upper Terrebonne County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz065.txt
 station = ('khum', 0.0028944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz065.txt
 
@@ -28025,17 +28025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz065.txt
 centroid = (0.5126503, -1.5858550)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz066.txt
 description = Lower Terrebonne County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz066.txt
 station = ('khum', 0.0045103)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz066.txt
 
@@ -28043,17 +28043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz066.txt
 centroid = (0.5126713, -1.5752190)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz067.txt
 description = Lower Lafourche County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz067.txt
 station = ('kgao', 0.0012416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz067.txt
 
@@ -28061,17 +28061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz067.txt
 centroid = (0.5149838, -1.5717842)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz068.txt
 description = Coastal Jefferson County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz068.txt
 station = ('kgao', 0.0032886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz068.txt
 
@@ -28079,17 +28079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz068.txt
 centroid = (0.5134863, -1.5638813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz069.txt
 description = Lower Plaquemines County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz069.txt
 station = ('knbg', 0.0095460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz069.txt
 
@@ -28097,17 +28097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz069.txt
 centroid = (0.5209598, -1.5628830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz070.txt
 description = Lower St. Bernard County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz070.txt
 station = ('knbg', 0.0071215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz070.txt
 
@@ -28115,17 +28115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz070.txt
 centroid = (0.5380396, -1.5784391)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz071.txt
 description = Northern Tangipahoa County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz071.txt
 station = ('khdc', 0.0053594)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz071.txt
 
@@ -28133,17 +28133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz071.txt
 centroid = (0.5212897, -1.6257044)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz073.txt
 description = West Cameron County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz073.txt
 station = ('kuxl', 0.0057687)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz073.txt
 
@@ -28151,17 +28151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz073.txt
 centroid = (0.5212897, -1.6257044)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz074.txt
 description = East Cameron County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz074.txt
 station = ('kuxl', 0.0057687)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz074.txt
 
@@ -28169,17 +28169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz074.txt
 centroid = (0.5277474, -1.5658431)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz076.txt
 description = Southeast St. Tammany County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz076.txt
 station = ('kasd', 0.0024767)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz076.txt
 
@@ -28187,17 +28187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz076.txt
 centroid = (0.5232968, -1.5712449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz077.txt
 description = Western Orleans County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz077.txt
 station = ('knew', 0.0011803)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz077.txt
 
@@ -28205,17 +28205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz077.txt
 centroid = (0.5251120, -1.5672725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz078.txt
 description = Eastern Orleans County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz078.txt
 station = ('knew', 0.0036104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz078.txt
 
@@ -28223,17 +28223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz078.txt
 centroid = (0.5324668, -1.5701034)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz079.txt
 description = Northern St. Tammany County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz079.txt
 station = ('kasd', 0.0035052)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz079.txt
 
@@ -28241,17 +28241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz079.txt
 centroid = (0.5298907, -1.5714683)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz080.txt
 description = Southwestern St. Tammany County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz080.txt
 station = ('kasd', 0.0033460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz080.txt
 
@@ -28259,17 +28259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz080.txt
 centroid = (0.5335786, -1.5778317)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz081.txt
 description = Central Tangipahoa County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz081.txt
 station = ('khdc', 0.0009155)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz081.txt
 
@@ -28277,17 +28277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz081.txt
 centroid = (0.5304038, -1.5772890)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz082.txt
 description = Lower Tangipahoa County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz082.txt
 station = ('khdc', 0.0023855)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz082.txt
 
@@ -28295,17 +28295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz082.txt
 centroid = (0.5324127, -1.5843122)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz083.txt
 description = Northern Livingston County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz083.txt
 station = ('kbtr', 0.0056689)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz083.txt
 
@@ -28313,17 +28313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz083.txt
 centroid = (0.5290704, -1.5821549)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz084.txt
 description = Southern Livingston County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz084.txt
 station = ('kaps', 0.0040848)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz084.txt
 
@@ -28331,17 +28331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz084.txt
 centroid = (0.5272116, -1.5875916)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz085.txt
 description = Western Ascension County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz085.txt
 station = ('kreg', 0.0006823)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz085.txt
 
@@ -28349,17 +28349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz085.txt
 centroid = (0.5269917, -1.5843558)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz086.txt
 description = Eastern Ascension County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz086.txt
 station = ('kreg', 0.0024986)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz086.txt
 
@@ -28367,17 +28367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz086.txt
 centroid = (0.5224067, -1.5736674)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz087.txt
 description = Upper Jefferson County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz087.txt
 station = ('kmsy', 0.0017585)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz087.txt
 
@@ -28385,17 +28385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz087.txt
 centroid = (0.5187503, -1.5729291)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz088.txt
 description = Lower Jefferson County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz088.txt
 station = ('knbg', 0.0025136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz088.txt
 
@@ -28403,17 +28403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz088.txt
 centroid = (0.5209197, -1.5709831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz089.txt
 description = Upper Plaquemines County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz089.txt
 station = ('knbg', 0.0002469)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz089.txt
 
@@ -28421,17 +28421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz089.txt
 centroid = (0.5195287, -1.5702361)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz090.txt
 description = Central Plaquemines County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz090.txt
 station = ('knbg', 0.0013762)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz090.txt
 
@@ -28439,17 +28439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz090.txt
 centroid = (0.5290564, -1.6304848)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz141.txt
 description = Northern Calcasieu County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz141.txt
 station = ('klch', 0.0020428)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz141.txt
 
@@ -28457,17 +28457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz141.txt
 centroid = (0.5296743, -1.6200617)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz142.txt
 description = Northern Jefferson Davis County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz142.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz142.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz142.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz142.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz142.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz142.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz142.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz142.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz142.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz142.txt
 station = ('k3r7', 0.0029062)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz142.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz142.txt
 
@@ -28475,17 +28475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz142.txt
 centroid = (0.5293741, -1.6127261)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz143.txt
 description = Northern Acadia County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz143.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz143.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz143.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz143.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz143.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz143.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz143.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz143.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz143.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz143.txt
 station = ('k3r7', 0.0043648)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz143.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz143.txt
 
@@ -28493,17 +28493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz143.txt
 centroid = (0.5244679, -1.6104834)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz152.txt
 description = Upper Vermilion County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz152.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz152.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz152.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz152.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz152.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz152.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz152.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz152.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz152.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz152.txt
 station = ('kiya', 0.0031445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz152.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz152.txt
 
@@ -28511,17 +28511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz152.txt
 centroid = (0.5237576, -1.5992661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz153.txt
 description = Upper Iberia County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz153.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz153.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz153.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz153.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz153.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz153.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz153.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz153.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz153.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz153.txt
 station = ('kara', 0.0038336)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz153.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz153.txt
 
@@ -28529,17 +28529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz153.txt
 centroid = (0.5203909, -1.5957318)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz154.txt
 description = Upper St. Mary County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz154.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz154.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz154.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz154.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz154.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz154.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz154.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz154.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz154.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz154.txt
 station = ('kptn', 0.0022595)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz154.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz154.txt
 
@@ -28547,17 +28547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz154.txt
 centroid = (0.5259253, -1.6281601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz241.txt
 description = Southern Calcasieu County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz241.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz241.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz241.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz241.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz241.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz241.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz241.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz241.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz241.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz241.txt
 station = ('kuxl', 0.0013499)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz241.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz241.txt
 
@@ -28565,17 +28565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz241.txt
 centroid = (0.5260283, -1.6196586)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz242.txt
 description = Southern Jefferson Davis County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz242.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz242.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz242.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz242.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz242.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz242.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz242.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz242.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz242.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz242.txt
 station = ('k3r7', 0.0026244)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz242.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz242.txt
 
@@ -28583,17 +28583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz242.txt
 centroid = (0.5258834, -1.6135569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz243.txt
 description = Southern Acadia County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz243.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz243.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz243.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz243.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz243.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz243.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz243.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz243.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz243.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz243.txt
 station = ('k3r7', 0.0038944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz243.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz243.txt
 
@@ -28601,17 +28601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz243.txt
 centroid = (0.5199231, -1.6115986)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz252.txt
 description = Lower Vermilion County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz252.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz252.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz252.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz252.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz252.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz252.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz252.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz252.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz252.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz252.txt
 station = ('kiya', 0.0050311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz252.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz252.txt
 
@@ -28619,17 +28619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz252.txt
 centroid = (0.5192337, -1.6031792)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz253.txt
 description = Lower Iberia County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz253.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz253.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz253.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz253.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz253.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz253.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz253.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz253.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz253.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz253.txt
 station = ('kara', 0.0049649)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz253.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz253.txt
 
@@ -28637,17 +28637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz253.txt
 centroid = (0.5178566, -1.5962712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/la/laz254.txt
 description = Lower St. Mary County, LA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/laz254.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/laz254.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/la/lac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/la/lac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/la/laz254.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/la/laz254.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/laz254.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/laz254.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/laz254.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/la/lac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/la/lac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/la/lac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/la/laz254.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/la/laz254.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz254.txt
 station = ('kp92', 0.0021372)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz254.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz254.txt
 
@@ -28655,17 +28655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz254.txt
 centroid = (0.7428121, -1.2767398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz001.txt
 description = Northern Berkshire County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz001.txt
 station = ('kaqw', 0.0024509)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz001.txt
 
@@ -28673,17 +28673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz001.txt
 centroid = (0.7438087, -1.2704374)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz002.txt
 description = Western Franklin County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz002.txt
 station = ('kaqw', 0.0050379)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz002.txt
 
@@ -28691,17 +28691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz002.txt
 centroid = (0.7427964, -1.2645155)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz003.txt
 description = Eastern Franklin County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz003.txt
 station = ('kore', 0.0022461)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz003.txt
 
@@ -28709,17 +28709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz003.txt
 centroid = (0.7409603, -1.2562496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz004.txt
 description = Northern Worcester County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz004.txt
 station = ('kfit', 0.0033295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz004.txt
 
@@ -28727,17 +28727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz004.txt
 centroid = (0.7411244, -1.2458108)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz005.txt
 description = Central Middlesex County, Middlesex County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz005.txt
 station = ('kbed', 0.0010278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz005.txt
 
@@ -28745,17 +28745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz005.txt
 centroid = (0.7455226, -1.2403339)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz006.txt
 description = Western Essex County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz006.txt
 station = ('klwm', 0.0008651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz006.txt
 
@@ -28763,17 +28763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz006.txt
 centroid = (0.7441595, -1.2368695)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz007.txt
 description = Eastern Essex County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz007.txt
 station = ('kbvy', 0.0011333)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz007.txt
 
@@ -28781,17 +28781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz007.txt
 centroid = (0.7398294, -1.2717987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz008.txt
 description = Western Hampshire County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz008.txt
 station = ('kbaf', 0.0043504)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz008.txt
 
@@ -28799,17 +28799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz008.txt
 centroid = (0.7359617, -1.2729280)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz009.txt
 description = Western Hampden County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz009.txt
 station = ('kbaf', 0.0028037)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz009.txt
 
@@ -28817,17 +28817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz009.txt
 centroid = (0.7383511, -1.2656185)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz010.txt
 description = Eastern Hampshire County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz010.txt
 station = ('kcef', 0.0018381)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz010.txt
 
@@ -28835,17 +28835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz010.txt
 centroid = (0.7351362, -1.2652415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz011.txt
 description = Eastern Hampden County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz011.txt
 station = ('kcef', 0.0014873)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz011.txt
 
@@ -28853,17 +28853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz011.txt
 centroid = (0.7356790, -1.2526385)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz012.txt
 description = Southern Worcester County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz012.txt
 station = ('korh', 0.0023637)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz012.txt
 
@@ -28871,17 +28871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz012.txt
 centroid = (0.7355219, -1.2438229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz013.txt
 description = Western Norfolk County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz013.txt
 station = ('kowd', 0.0014689)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz013.txt
 
@@ -28889,17 +28889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz013.txt
 centroid = (0.7403565, -1.2419239)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz014.txt
 description = Southeast Middlesex County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz014.txt
 station = ('kbed', 0.0020188)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz014.txt
 
@@ -28907,17 +28907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz014.txt
 centroid = (0.7388118, -1.2406254)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz015.txt
 description = Suffolk County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz015.txt
 station = ('kbos', 0.0010560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz015.txt
 
@@ -28925,17 +28925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz015.txt
 centroid = (0.7369077, -1.2393461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz016.txt
 description = Eastern Norfolk County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz016.txt
 station = ('kbos', 0.0025319)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz016.txt
 
@@ -28943,17 +28943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz016.txt
 centroid = (0.7315914, -1.2424109)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz017.txt
 description = Northern Bristol County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz017.txt
 station = ('ktan', 0.0022635)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz017.txt
 
@@ -28961,17 +28961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz017.txt
 centroid = (0.7324780, -1.2373198)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz018.txt
 description = Western Plymouth County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz018.txt
 station = ('ktan', 0.0021792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz018.txt
 
@@ -28979,17 +28979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz018.txt
 centroid = (0.7335113, -1.2342462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz019.txt
 description = Eastern Plymouth County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz019.txt
 station = ('kghg', 0.0013721)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz019.txt
 
@@ -28997,17 +28997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz019.txt
 centroid = (0.7273590, -1.2398540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz020.txt
 description = Southern Bristol County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz020.txt
 station = ('kewb', 0.0009474)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz020.txt
 
@@ -29015,17 +29015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz020.txt
 centroid = (0.7285266, -1.2352760)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz021.txt
 description = Southern Plymouth County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz021.txt
 station = ('kewb', 0.0026824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz021.txt
 
@@ -29033,17 +29033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz021.txt
 centroid = (0.7282596, -1.2269420)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz022.txt
 description = Barnstable County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz022.txt
 station = ('khya', 0.0011193)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz022.txt
 
@@ -29051,17 +29051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz022.txt
 centroid = (0.7225070, -1.2331816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz023.txt
 description = Dukes County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz023.txt
 station = ('kmvy', 0.0005197)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz023.txt
 
@@ -29069,17 +29069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz023.txt
 centroid = (0.7204388, -1.2230290)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz024.txt
 description = Nantucket County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz024.txt
 station = ('kack', 0.0005008)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz024.txt
 
@@ -29087,17 +29087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz024.txt
 centroid = (0.7368047, -1.2784729)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz025.txt
 description = Southern Berkshire County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz025.txt
 station = ('kpsf', 0.0038194)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz025.txt
 
@@ -29105,17 +29105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz025.txt
 centroid = (0.7441840, -1.2506995)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ma/maz026.txt
 description = Northwest Middlesex County, Middlesex County, MA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/maz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/maz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ma/mac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ma/mac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ma/maz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ma/maz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/maz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/maz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/maz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ma/mac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ma/mac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ma/mac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ma/maz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ma/maz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz026.txt
 station = ('kfit', 0.0019519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz026.txt
 
@@ -29123,17 +29123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz026.txt
 centroid = (0.6899042, -1.3835906)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz001.txt
 description = Garrett County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz001.txt
 station = ('k2g4', 0.0012341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz001.txt
 
@@ -29141,17 +29141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz001.txt
 centroid = (0.6912150, -1.3581140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz003.txt
 description = Washington County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz003.txt
 station = ('khgr', 0.0020014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz003.txt
 
@@ -29159,17 +29159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz003.txt
 centroid = (0.6889199, -1.3508517)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz004.txt
 description = Frederick County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz004.txt
 station = ('kfdk', 0.0010065)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz004.txt
 
@@ -29177,17 +29177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz004.txt
 centroid = (0.6905064, -1.3442997)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz005.txt
 description = Carroll County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz005.txt
 station = ('kdmw', 0.0008143)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz005.txt
 
@@ -29195,17 +29195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz005.txt
 centroid = (0.6901800, -1.3381038)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz006.txt
 description = Northern Baltimore County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz006.txt
 station = ('kdmh', 0.0046081)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz006.txt
 
@@ -29213,17 +29213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz006.txt
 centroid = (0.6907123, -1.3253751)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz008.txt
 description = Cecil County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz008.txt
 station = ('k0w3', 0.0035546)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz008.txt
 
@@ -29231,17 +29231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz008.txt
 centroid = (0.6864589, -1.3370898)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz011.txt
 description = Southern Baltimore, Baltimore City County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc510.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc510.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc510.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc510.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc510.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz011.txt
 station = ('kdmh', 0.0008409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc510.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz011.txt
 
@@ -29249,17 +29249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz011.txt
 centroid = (0.6851709, -1.3270820)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz012.txt
 description = Kent County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz012.txt
 station = ('kapg', 0.0040546)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz012.txt
 
@@ -29267,17 +29267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz012.txt
 centroid = (0.6777340, -1.3411738)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz013.txt
 description = Prince Georges County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz013.txt
 station = ('kadw', 0.0002698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz013.txt
 
@@ -29285,17 +29285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz013.txt
 centroid = (0.6808076, -1.3370758)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz014.txt
 description = Anne Arundel County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz014.txt
 station = ('knak', 0.0017530)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz014.txt
 
@@ -29303,17 +29303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz014.txt
 centroid = (0.6819089, -1.3267923)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz015.txt
 description = Queen Anne's County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz015.txt
 station = ('kesn', 0.0047642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz015.txt
 
@@ -29321,17 +29321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz015.txt
 centroid = (0.6720879, -1.3437290)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz016.txt
 description = Charles County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz016.txt
 station = ('kdaa', 0.0044990)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz016.txt
 
@@ -29339,17 +29339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz016.txt
 centroid = (0.6685414, -1.3370636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz017.txt
 description = St. Marys County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz017.txt
 station = ('k2w6', 0.0008161)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz017.txt
 
@@ -29357,17 +29357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz017.txt
 centroid = (0.6728471, -1.3363916)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz018.txt
 description = Calvert County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz018.txt
 station = ('k2w6', 0.0041265)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz018.txt
 
@@ -29375,17 +29375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz018.txt
 centroid = (0.6767322, -1.3280699)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz019.txt
 description = Talbot County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz019.txt
 station = ('kesn', 0.0005779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz019.txt
 
@@ -29393,17 +29393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz019.txt
 centroid = (0.6784392, -1.3235128)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz020.txt
 description = Caroline County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz020.txt
 station = ('kesn', 0.0034308)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz020.txt
 
@@ -29411,17 +29411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz020.txt
 centroid = (0.6716010, -1.3265899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz021.txt
 description = Dorchester County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz021.txt
 station = ('kcge', 0.0010809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz021.txt
 
@@ -29429,17 +29429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz021.txt
 centroid = (0.6697474, -1.3198058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz022.txt
 description = Wicomico County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz022.txt
 station = ('ksby', 0.0017783)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz022.txt
 
@@ -29447,17 +29447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz022.txt
 centroid = (0.6652986, -1.3219979)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz023.txt
 description = Somerset County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz023.txt
 station = ('kwal', 0.0050111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz023.txt
 
@@ -29465,17 +29465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz023.txt
 centroid = (0.6669636, -1.3156868)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz024.txt
 description = Inland Worcester County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz024.txt
 station = ('ksby', 0.0026230)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz024.txt
 
@@ -29483,17 +29483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz024.txt
 centroid = (0.6676059, -1.3117860)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz025.txt
 description = Maryland Beaches, Worcester County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz025.txt
 station = ('koxb', 0.0012895)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz025.txt
 
@@ -29501,17 +29501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz025.txt
 centroid = (0.6911766, -1.3775605)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz501.txt
 description = Extreme Western Allegany County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz501.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz501.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz501.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz501.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz501.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz501.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz501.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz501.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz501.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz501.txt
 station = ('kcbe', 0.0022660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz501.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz501.txt
 
@@ -29519,17 +29519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz501.txt
 centroid = (0.6916810, -1.3717764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz502.txt
 description = Central and Eastern Allegany County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz502.txt
 station = ('kcbe', 0.0022183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz502.txt
 
@@ -29537,17 +29537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz502.txt
 centroid = (0.6840801, -1.3495462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz503.txt
 description = Northwest Montgomery County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz503.txt
 station = ('kgai', 0.0021781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz503.txt
 
@@ -29555,17 +29555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz503.txt
 centroid = (0.6822789, -1.3458827)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz504.txt
 description = Central and Southeast Montgomery County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz504.txt
 station = ('kgai', 0.0015148)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz504.txt
 
@@ -29573,17 +29573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz504.txt
 centroid = (0.6863228, -1.3449455)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz505.txt
 description = Northwest Howard County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz505.txt
 station = ('kgai', 0.0030647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz505.txt
 
@@ -29591,17 +29591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz505.txt
 centroid = (0.6846211, -1.3419348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz506.txt
 description = Central and Southeast Howard County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz506.txt
 station = ('kbwi', 0.0029449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz506.txt
 
@@ -29609,17 +29609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz506.txt
 centroid = (0.6916007, -1.3334054)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz507.txt
 description = Northwest Harford County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz507.txt
 station = ('k0w3', 0.0028312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz507.txt
 
@@ -29627,17 +29627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz507.txt
 centroid = (0.6918398, -1.3334054)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/md/mdz508.txt
 description = Southeast Harford County, MD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/md/mdc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/md/mdc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/md/mdz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/md/mdz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/md/mdc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/md/mdc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/md/mdc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/md/mdz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/md/mdz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz508.txt
 station = ('k0w3', 0.0029264)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz508.txt
 
@@ -29645,17 +29645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz508.txt
 centroid = (0.8193972, -1.2061569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez001.txt
 description = Northwest Aroostook County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez001.txt
 station = ('k40b', 0.0077018)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez001.txt
 
@@ -29663,17 +29663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez001.txt
 centroid = (0.8155295, -1.1906322)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez002.txt
 description = Northeast Aroostook County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez002.txt
 station = ('kpqi', 0.0021489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez002.txt
 
@@ -29681,17 +29681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez002.txt
 centroid = (0.8069809, -1.2212348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez003.txt
 description = Northern Somerset County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez003.txt
 station = ('k40b', 0.0084735)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez003.txt
 
@@ -29699,17 +29699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez003.txt
 centroid = (0.8060367, -1.2084660)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez004.txt
 description = Northern Piscataquis County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez004.txt
 station = ('k40b', 0.0083598)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez004.txt
 
@@ -29717,17 +29717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez004.txt
 centroid = (0.8018985, -1.1980917)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez005.txt
 description = Northern Penobscot County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez005.txt
 station = ('kmlt', 0.0051980)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez005.txt
 
@@ -29735,17 +29735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez005.txt
 centroid = (0.8029056, -1.1888712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez006.txt
 description = Southeast Aroostook County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez006.txt
 station = ('khul', 0.0043239)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez006.txt
 
@@ -29753,17 +29753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez006.txt
 centroid = (0.7826597, -1.2370702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez007.txt
 description = Northern Oxford County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez007.txt
 station = ('k8b0', 0.0037067)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez007.txt
 
@@ -29771,17 +29771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez007.txt
 centroid = (0.7866496, -1.2308917)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez008.txt
 description = Northern Franklin County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez008.txt
 station = ('k8b0', 0.0022149)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez008.txt
 
@@ -29789,17 +29789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez008.txt
 centroid = (0.7937757, -1.2229173)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez009.txt
 description = Central Somerset County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez009.txt
 station = ('kgnr', 0.0059364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez009.txt
 
@@ -29807,17 +29807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez009.txt
 centroid = (0.7951877, -1.2117489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez010.txt
 description = Central Piscataquis County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez010.txt
 station = ('kgnr', 0.0025119)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez010.txt
 
@@ -29825,17 +29825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez010.txt
 centroid = (0.7922067, -1.1939256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez011.txt
 description = Central Penobscot County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez011.txt
 station = ('kmlt', 0.0057813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez011.txt
 
@@ -29843,17 +29843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez011.txt
 centroid = (0.7725368, -1.2334399)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez012.txt
 description = Southern Oxford County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez012.txt
 station = ('kizg', 0.0060058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez012.txt
 
@@ -29861,17 +29861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez012.txt
 centroid = (0.7794134, -1.2249035)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez013.txt
 description = Southern Franklin County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez013.txt
 station = ('kaug', 0.0076094)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez013.txt
 
@@ -29879,17 +29879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez013.txt
 centroid = (0.7826021, -1.2158522)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez014.txt
 description = Southern Somerset County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez014.txt
 station = ('kwvl', 0.0053547)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez014.txt
 
@@ -29897,17 +29897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez014.txt
 centroid = (0.7842846, -1.2015562)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez015.txt
 description = Southern Penobscot County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez015.txt
 station = ('kbgr', 0.0024012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez015.txt
 
@@ -29915,17 +29915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez015.txt
 centroid = (0.7827976, -1.1924770)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez016.txt
 description = Interior Hancock County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez016.txt
 station = ('kbgr', 0.0061645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez016.txt
 
@@ -29933,17 +29933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez016.txt
 centroid = (0.7855605, -1.1804325)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez017.txt
 description = Central Washington County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez017.txt
 station = ('cwss', 0.0059536)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez017.txt
 
@@ -29951,17 +29951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez017.txt
 centroid = (0.7602480, -1.2353161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez018.txt
 description = Interior York County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez018.txt
 station = ('ksfm', 0.0028831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez018.txt
 
@@ -29969,17 +29969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez018.txt
 centroid = (0.7654368, -1.2297869)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez019.txt
 description = Central Interior Cumberland County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez019.txt
 station = ('klew', 0.0040554)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez019.txt
 
@@ -29987,17 +29987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez019.txt
 centroid = (0.7708316, -1.2252997)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez020.txt
 description = Androscoggin County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez020.txt
 station = ('klew', 0.0022434)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez020.txt
 
@@ -30005,17 +30005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez020.txt
 centroid = (0.7750885, -1.2176673)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez021.txt
 description = Kennebec County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez021.txt
 station = ('kaug', 0.0016678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez021.txt
 
@@ -30023,17 +30023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez021.txt
 centroid = (0.7773801, -1.2072600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez022.txt
 description = Interior Waldo County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez022.txt
 station = ('kbgr', 0.0063110)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez022.txt
 
@@ -30041,17 +30041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez022.txt
 centroid = (0.7563192, -1.2322112)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez023.txt
 description = Coastal York County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez023.txt
 station = ('ksfm', 0.0018717)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez023.txt
 
@@ -30059,17 +30059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez023.txt
 centroid = (0.7634925, -1.2249768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez024.txt
 description = Coastal Cumberland County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez024.txt
 station = ('kpwm', 0.0021938)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez024.txt
 
@@ -30077,17 +30077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez024.txt
 centroid = (0.7674300, -1.2193097)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez025.txt
 description = Sagadahoc County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez025.txt
 station = ('kiwi', 0.0018180)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez025.txt
 
@@ -30095,17 +30095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez025.txt
 centroid = (0.7692574, -1.2137561)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez026.txt
 description = Lincoln County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez026.txt
 station = ('kiwi', 0.0028868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez026.txt
 
@@ -30113,17 +30113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez026.txt
 centroid = (0.7705629, -1.2072966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez027.txt
 description = Knox County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez027.txt
 station = ('krkd', 0.0017182)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez027.txt
 
@@ -30131,17 +30131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez027.txt
 centroid = (0.7740361, -1.2051708)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez028.txt
 description = Coastal Waldo County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez028.txt
 station = ('krkd', 0.0049653)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez028.txt
 
@@ -30149,17 +30149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez028.txt
 centroid = (0.7755353, -1.1936795)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez029.txt
 description = Coastal Hancock County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez029.txt
 station = ('kbhb', 0.0004189)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez029.txt
 
@@ -30167,17 +30167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez029.txt
 centroid = (0.7798061, -1.1788146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez030.txt
 description = Coastal Washington County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez030.txt
 station = ('cwss', 0.0100396)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez030.txt
 
@@ -30185,17 +30185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez030.txt
 centroid = (0.7897179, -1.2070139)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez031.txt
 description = Southern Piscataquis County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez031.txt
 station = ('kgnr', 0.0064804)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez031.txt
 
@@ -30203,17 +30203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez031.txt
 centroid = (0.7937164, -1.1823192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez032.txt
 description = Northern Washington County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez032.txt
 station = ('cwss', 0.0075491)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez032.txt
 
@@ -30221,17 +30221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez032.txt
 centroid = (0.7686500, -1.2337802)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/me/mez033.txt
 description = Interior Cumberland Highlands, Cumberland County, ME, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mez033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mez033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/me/mec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/me/mec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/me/mez033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/me/mez033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mez033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mez033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mez033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/me/mec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/me/mec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/me/mec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/me/mez033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/me/mez033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez033.txt
 station = ('kizg', 0.0034074)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez033.txt
 
@@ -30239,17 +30239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez033.txt
 centroid = (0.8308238, -1.5432550)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz001.txt
 description = Keweenaw County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz001.txt
 station = ('kcmx', 0.0076447)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz001.txt
 
@@ -30257,17 +30257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz001.txt
 centroid = (0.8144474, -1.5588408)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz002.txt
 description = Ontonagon County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz002.txt
 station = ('klnl', 0.0089960)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz002.txt
 
@@ -30275,17 +30275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz002.txt
 centroid = (0.8212315, -1.5467230)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz003.txt
 description = Houghton County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz003.txt
 station = ('kcmx', 0.0025674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz003.txt
 
@@ -30293,17 +30293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz003.txt
 centroid = (0.8144160, -1.5422637)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz004.txt
 description = Baraga County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz004.txt
 station = ('kcmx', 0.0089096)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz004.txt
 
@@ -30311,17 +30311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz004.txt
 centroid = (0.8103808, -1.5296327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz005.txt
 description = Marquette County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz005.txt
 station = ('ksaw', 0.0032601)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz005.txt
 
@@ -30329,17 +30329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz005.txt
 centroid = (0.8100056, -1.5114883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz006.txt
 description = Alger County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz006.txt
 station = ('kp53', 0.0005907)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz006.txt
 
@@ -30347,17 +30347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz006.txt
 centroid = (0.8110667, -1.4930297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz007.txt
 description = Luce County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz007.txt
 station = ('kery', 0.0029761)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz007.txt
 
@@ -30365,17 +30365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz007.txt
 centroid = (0.8099881, -1.5654626)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz009.txt
 description = Gogebic County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz009.txt
 station = ('kd25', 0.0054967)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz009.txt
 
@@ -30383,17 +30383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz009.txt
 centroid = (0.8064940, -1.5451505)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz010.txt
 description = Iron County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz010.txt
 station = ('kimt', 0.0084847)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz010.txt
 
@@ -30401,17 +30401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz010.txt
 centroid = (0.8030103, -1.5336278)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz011.txt
 description = Dickinson County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz011.txt
 station = ('kimt', 0.0044970)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz011.txt
 
@@ -30419,17 +30419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz011.txt
 centroid = (0.7955071, -1.5281632)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz012.txt
 description = Menominee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz012.txt
 station = ('kmnm', 0.0078375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz012.txt
 
@@ -30437,17 +30437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz012.txt
 centroid = (0.8014500, -1.5171170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz013.txt
 description = Delta County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz013.txt
 station = ('kesc', 0.0032445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz013.txt
 
@@ -30455,17 +30455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz013.txt
 centroid = (0.8037590, -1.5043290)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz014.txt
 description = Southern Schoolcraft County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz014.txt
 station = ('kisq', 0.0013698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz014.txt
 
@@ -30473,17 +30473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz014.txt
 centroid = (0.7944826, -1.4816187)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz016.txt
 description = Emmet County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz016.txt
 station = ('kpln', 0.0013686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz016.txt
 
@@ -30491,17 +30491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz016.txt
 centroid = (0.7931963, -1.4748015)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz017.txt
 description = Cheboygan County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz017.txt
 station = ('kslh', 0.0036172)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz017.txt
 
@@ -30509,17 +30509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz017.txt
 centroid = (0.7913253, -1.4646087)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz018.txt
 description = Presque Isle County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz018.txt
 station = ('kpzq', 0.0017263)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz018.txt
 
@@ -30527,17 +30527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz018.txt
 centroid = (0.7842934, -1.4977072)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz020.txt
 description = Leelanau County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz020.txt
 station = ('ktvc', 0.0046734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz020.txt
 
@@ -30545,17 +30545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz020.txt
 centroid = (0.7854034, -1.4859332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz021.txt
 description = Antrim County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz021.txt
 station = ('kacb', 0.0007770)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz021.txt
 
@@ -30563,17 +30563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz021.txt
 centroid = (0.7857717, -1.4765276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz022.txt
 description = Otsego County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz022.txt
 station = ('kglr', 0.0010462)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz022.txt
 
@@ -30581,17 +30581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz022.txt
 centroid = (0.7858781, -1.4682984)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz023.txt
 description = Montmorency County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz023.txt
 station = ('kapn', 0.0069806)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz023.txt
 
@@ -30599,17 +30599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz023.txt
 centroid = (0.7860038, -1.4595927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz024.txt
 description = Alpena County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz024.txt
 station = ('kapn', 0.0011409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz024.txt
 
@@ -30617,17 +30617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz024.txt
 centroid = (0.7791063, -1.5012589)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz025.txt
 description = Benzie County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz025.txt
 station = ('kfks', 0.0023086)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz025.txt
 
@@ -30635,17 +30635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz025.txt
 centroid = (0.7796543, -1.4932863)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz026.txt
 description = Grand Traverse County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz026.txt
 station = ('ktvc', 0.0010938)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz026.txt
 
@@ -30653,17 +30653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz026.txt
 centroid = (0.7798934, -1.4851042)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz027.txt
 description = Kalkaska County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz027.txt
 station = ('kacb', 0.0054675)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz027.txt
 
@@ -30671,17 +30671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz027.txt
 centroid = (0.7798759, -1.4767283)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz028.txt
 description = Crawford County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz028.txt
 station = ('kgov', 0.0014728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz028.txt
 
@@ -30689,17 +30689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz028.txt
 centroid = (0.7798428, -1.4683403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz029.txt
 description = Oscoda County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz029.txt
 station = ('ky31', 0.0076508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz029.txt
 
@@ -30707,17 +30707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz029.txt
 centroid = (0.7799074, -1.4589870)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz030.txt
 description = Alcona County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz030.txt
 station = ('kosc', 0.0049856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz030.txt
 
@@ -30725,17 +30725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz030.txt
 centroid = (0.7737603, -1.5019797)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz031.txt
 description = Manistee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz031.txt
 station = ('kmbl', 0.0026748)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz031.txt
 
@@ -30743,17 +30743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz031.txt
 centroid = (0.7738511, -1.4936266)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz032.txt
 description = Wexford County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz032.txt
 station = ('kcad', 0.0022380)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz032.txt
 
@@ -30761,17 +30761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz032.txt
 centroid = (0.7738319, -1.4851827)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz033.txt
 description = Missaukee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz033.txt
 station = ('kcad', 0.0041299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz033.txt
 
@@ -30779,17 +30779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz033.txt
 centroid = (0.7738022, -1.4767510)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz034.txt
 description = Roscommon County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz034.txt
 station = ('khtl', 0.0007319)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz034.txt
 
@@ -30797,17 +30797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz034.txt
 centroid = (0.7737900, -1.4682862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz035.txt
 description = Ogemaw County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz035.txt
 station = ('ky31', 0.0017072)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz035.txt
 
@@ -30815,17 +30815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz035.txt
 centroid = (0.7741565, -1.4597236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz036.txt
 description = Iosco County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz036.txt
 station = ('kosc', 0.0037385)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz036.txt
 
@@ -30833,17 +30833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz036.txt
 centroid = (0.7678646, -1.5053412)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz037.txt
 description = Mason County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz037.txt
 station = ('kldm', 0.0019531)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz037.txt
 
@@ -30851,17 +30851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz037.txt
 centroid = (0.7677703, -1.4975222)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz038.txt
 description = Lake County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz038.txt
 station = ('krqb', 0.0059849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz038.txt
 
@@ -30869,17 +30869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz038.txt
 centroid = (0.7677686, -1.4892057)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz039.txt
 description = Osceola County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz039.txt
 station = ('krqb', 0.0051821)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz039.txt
 
@@ -30887,17 +30887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz039.txt
 centroid = (0.7677337, -1.4808735)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz040.txt
 description = Clare County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz040.txt
 station = ('kmop', 0.0066377)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz040.txt
 
@@ -30905,17 +30905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz040.txt
 centroid = (0.7677808, -1.4728519)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz041.txt
 description = Gladwin County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz041.txt
 station = ('ky31', 0.0051480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz041.txt
 
@@ -30923,17 +30923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz041.txt
 centroid = (0.7690898, -1.4642405)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz042.txt
 description = Arenac County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz042.txt
 station = ('ky31', 0.0047453)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz042.txt
 
@@ -30941,17 +30941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz042.txt
 centroid = (0.7616739, -1.5056484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz043.txt
 description = Oceana County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz043.txt
 station = ('kffx', 0.0049385)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz043.txt
 
@@ -30959,17 +30959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz043.txt
 centroid = (0.7601642, -1.4975082)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz044.txt
 description = Newaygo County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz044.txt
 station = ('kffx', 0.0032146)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz044.txt
 
@@ -30977,17 +30977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz044.txt
 centroid = (0.7616774, -1.4891935)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz045.txt
 description = Mecosta County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz045.txt
 station = ('krqb', 0.0026779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz045.txt
 
@@ -30995,17 +30995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz045.txt
 centroid = (0.7616722, -1.4808543)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz046.txt
 description = Isabella County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz046.txt
 station = ('kmop', 0.0014919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz046.txt
 
@@ -31013,17 +31013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz046.txt
 centroid = (0.7617804, -1.4728467)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz047.txt
 description = Midland County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz047.txt
 station = ('kikw', 0.0016571)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz047.txt
 
@@ -31031,17 +31031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz047.txt
 centroid = (0.7628345, -1.4659387)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz048.txt
 description = Bay County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz048.txt
 station = ('kmbs', 0.0032461)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz048.txt
 
@@ -31049,17 +31049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz048.txt
 centroid = (0.7650354, -1.4489601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz049.txt
 description = Huron County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz049.txt
 station = ('kbax', 0.0010095)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz049.txt
 
@@ -31067,17 +31067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz049.txt
 centroid = (0.7555740, -1.5035680)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz050.txt
 description = Muskegon County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz050.txt
 station = ('kmkg', 0.0024288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz050.txt
 
@@ -31085,17 +31085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz050.txt
 centroid = (0.7559196, -1.4861897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz051.txt
 description = Montcalm County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz051.txt
 station = ('kamn', 0.0059031)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz051.txt
 
@@ -31103,17 +31103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz051.txt
 centroid = (0.7556002, -1.4766323)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz052.txt
 description = Gratiot County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz052.txt
 station = ('kamn', 0.0011710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz052.txt
 
@@ -31121,17 +31121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz052.txt
 centroid = (0.7563384, -1.4670051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz053.txt
 description = Saginaw County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz053.txt
 station = ('khyx', 0.0029659)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz053.txt
 
@@ -31139,17 +31139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz053.txt
 centroid = (0.7585917, -1.4558961)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz054.txt
 description = Tuscola County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz054.txt
 station = ('kcfs', 0.0003745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz054.txt
 
@@ -31157,17 +31157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz054.txt
 centroid = (0.7578830, -1.4454834)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz055.txt
 description = Sanilac County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz055.txt
 station = ('kbax', 0.0065779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz055.txt
 
@@ -31175,17 +31175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz055.txt
 centroid = (0.7497952, -1.5008767)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz056.txt
 description = Ottawa County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz056.txt
 station = ('kbiv', 0.0039101)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz056.txt
 
@@ -31193,17 +31193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz056.txt
 centroid = (0.7510536, -1.4931152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz057.txt
 description = Kent County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz057.txt
 station = ('kgrr', 0.0026312)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz057.txt
 
@@ -31211,17 +31211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz057.txt
 centroid = (0.7495334, -1.4848319)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz058.txt
 description = Ionia County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz058.txt
 station = ('ky70', 0.0002186)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz058.txt
 
@@ -31229,17 +31229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz058.txt
 centroid = (0.7495072, -1.4765747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz059.txt
 description = Clinton County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz059.txt
 station = ('klan', 0.0028068)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz059.txt
 
@@ -31247,17 +31247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz059.txt
 centroid = (0.7496835, -1.4686370)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz060.txt
 description = Shiawassee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz060.txt
 station = ('krnp', 0.0006893)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz060.txt
 
@@ -31265,17 +31265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz060.txt
 centroid = (0.7508703, -1.4609575)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz061.txt
 description = Genesee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz061.txt
 station = ('kfnt', 0.0011082)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz061.txt
 
@@ -31283,17 +31283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz061.txt
 centroid = (0.7520641, -1.4524944)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz062.txt
 description = Lapeer County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz062.txt
 station = ('kd95', 0.0007566)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz062.txt
 
@@ -31301,17 +31301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz062.txt
 centroid = (0.7494880, -1.4430731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz063.txt
 description = St. Clair County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz063.txt
 station = ('kphn', 0.0019526)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz063.txt
 
@@ -31319,17 +31319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz063.txt
 centroid = (0.7433584, -1.4990354)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz064.txt
 description = Allegan County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz064.txt
 station = ('kbiv', 0.0038788)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz064.txt
 
@@ -31337,17 +31337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz064.txt
 centroid = (0.7434230, -1.4889229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz065.txt
 description = Barry County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz065.txt
 station = ('kbtl', 0.0052045)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz065.txt
 
@@ -31355,17 +31355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz065.txt
 centroid = (0.7434422, -1.4807094)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz066.txt
 description = Eaton County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz066.txt
 station = ('kfpk', 0.0005132)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz066.txt
 
@@ -31373,17 +31373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz066.txt
 centroid = (0.7434596, -1.4725971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz067.txt
 description = Ingham County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz067.txt
 station = ('ktew', 0.0008404)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz067.txt
 
@@ -31391,17 +31391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz067.txt
 centroid = (0.7435626, -1.4645320)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz068.txt
 description = Livingston County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz068.txt
 station = ('kozw', 0.0010412)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz068.txt
 
@@ -31409,17 +31409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz068.txt
 centroid = (0.7445644, -1.4553515)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz069.txt
 description = Oakland County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz069.txt
 station = ('kptk', 0.0004147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz069.txt
 
@@ -31427,17 +31427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz069.txt
 centroid = (0.7451788, -1.4474399)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz070.txt
 description = Macomb County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz070.txt
 station = ('kmtc', 0.0018731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz070.txt
 
@@ -31445,17 +31445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz070.txt
 centroid = (0.7374243, -1.5013130)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz071.txt
 description = Van Buren County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz071.txt
 station = ('klwa', 0.0035206)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz071.txt
 
@@ -31463,17 +31463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz071.txt
 centroid = (0.7373213, -1.4928011)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz072.txt
 description = Kalamazoo County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz072.txt
 station = ('kazo', 0.0003215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz072.txt
 
@@ -31481,17 +31481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz072.txt
 centroid = (0.7373423, -1.4836259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz073.txt
 description = Calhoun County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz073.txt
 station = ('krmy', 0.0006500)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz073.txt
 
@@ -31499,17 +31499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz073.txt
 centroid = (0.7373754, -1.4734646)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz074.txt
 description = Jackson County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz074.txt
 station = ('kjxn', 0.0006437)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz074.txt
 
@@ -31517,17 +31517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz074.txt
 centroid = (0.7374610, -1.4632579)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz075.txt
 description = Washtenaw County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz075.txt
 station = ('karb', 0.0013111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz075.txt
 
@@ -31535,17 +31535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz075.txt
 centroid = (0.7379950, -1.4536236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz076.txt
 description = Wayne County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz076.txt
 station = ('kdtw', 0.0010714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz076.txt
 
@@ -31553,17 +31553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz076.txt
 centroid = (0.7315600, -1.5008715)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz078.txt
 description = Cass County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz078.txt
 station = ('kekm', 0.0034678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz078.txt
 
@@ -31571,17 +31571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz078.txt
 centroid = (0.7315460, -1.4927417)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz079.txt
 description = St. Joseph County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz079.txt
 station = ('khai', 0.0011621)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz079.txt
 
@@ -31589,17 +31589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz079.txt
 centroid = (0.7315740, -1.4845596)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz080.txt
 description = Branch County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz080.txt
 station = ('koeb', 0.0003124)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz080.txt
 
@@ -31607,17 +31607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz080.txt
 centroid = (0.7310800, -1.4764264)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz081.txt
 description = Hillsdale County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz081.txt
 station = ('kjym', 0.0005936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz081.txt
 
@@ -31625,17 +31625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz081.txt
 centroid = (0.7312074, -1.4672355)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz082.txt
 description = Lenawee County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz082.txt
 station = ('kadg', 0.0005429)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz082.txt
 
@@ -31643,17 +31643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz082.txt
 centroid = (0.7318026, -1.4580009)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz083.txt
 description = Monroe County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz083.txt
 station = ('kttf', 0.0013451)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz083.txt
 
@@ -31661,17 +31661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz083.txt
 centroid = (0.8134456, -1.5501875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz084.txt
 description = Southern Houghton County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz084.txt
 station = ('klnl', 0.0092142)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz084.txt
 
@@ -31679,17 +31679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz084.txt
 centroid = (0.8086547, -1.5045942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz085.txt
 description = Northern Schoolcraft County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz085.txt
 station = ('kisq', 0.0062587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz085.txt
 
@@ -31697,17 +31697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz085.txt
 centroid = (0.8097036, -1.4827078)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz086.txt
 description = Western Chippewa County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz086.txt
 station = ('cyam', 0.0056729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz086.txt
 
@@ -31715,17 +31715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz086.txt
 centroid = (0.8084732, -1.4723790)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz087.txt
 description = Central Chippewa County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz087.txt
 station = ('kciu', 0.0017902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz087.txt
 
@@ -31733,17 +31733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz087.txt
 centroid = (0.8035042, -1.4649491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz088.txt
 description = Southeast Chippewa County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz088.txt
 station = ('kdrm', 0.0023721)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz088.txt
 
@@ -31751,17 +31751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz088.txt
 centroid = (0.8052286, -1.4927208)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz095.txt
 description = Western Mackinac County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz095.txt
 station = ('kery', 0.0031656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz095.txt
 
@@ -31769,17 +31769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz095.txt
 centroid = (0.8037311, -1.4783777)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz096.txt
 description = Eastern Mackinac County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz096.txt
 station = ('kmcd', 0.0033381)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz096.txt
 
@@ -31787,17 +31787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz096.txt
 centroid = (0.7989943, -1.4744699)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz097.txt
 description = Mackinac Island/Bois Blanc Island, Mackinac County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz097.txt
 station = ('kslh', 0.0022376)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz097.txt
 
@@ -31805,17 +31805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz097.txt
 centroid = (0.7972786, -1.4931292)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz098.txt
 description = Beaver Island, Charlevoix County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz098.txt
 station = ('ksjx', 0.0002835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz098.txt
 
@@ -31823,17 +31823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz098.txt
 centroid = (0.7893199, -1.4842402)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz099.txt
 description = Charlevoix County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz099.txt
 station = ('kbfa', 0.0017645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz099.txt
 
@@ -31841,17 +31841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz099.txt
 centroid = (0.7356074, -1.5068614)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz177.txt
 description = Northern Berrien County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz177.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz177.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz177.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz177.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz177.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz177.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz177.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz177.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz177.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz177.txt
 station = ('kbeh', 0.0010616)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz177.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz177.txt
 
@@ -31859,17 +31859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz177.txt
 centroid = (0.7312423, -1.5085718)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mi/miz277.txt
 description = Southern Berrien County, MI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/miz277.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/miz277.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mi/mic021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mi/mic021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mi/miz277.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mi/miz277.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/miz277.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/miz277.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/miz277.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mi/mic021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mi/mic021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mi/mic021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mi/miz277.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mi/miz277.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz277.txt
 station = ('ksbn', 0.0037678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz277.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz277.txt
 
@@ -31877,17 +31877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz277.txt
 centroid = (0.8350807, -1.6878172)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz001.txt
 description = West Polk County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz001.txt
 station = ('kckn', 0.0010340)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz001.txt
 
@@ -31895,17 +31895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz001.txt
 centroid = (0.8260032, -1.6834591)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz002.txt
 description = Norman County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz002.txt
 station = ('k3n8', 0.0063438)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz002.txt
 
@@ -31913,17 +31913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz002.txt
 centroid = (0.8184268, -1.6840787)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz003.txt
 description = Clay County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz003.txt
 station = ('kjkj', 0.0022579)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz003.txt
 
@@ -31931,17 +31931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz003.txt
 centroid = (0.8513123, -1.6891750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz004.txt
 description = Kittson County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz004.txt
 station = ('khco', 0.0018922)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz004.txt
 
@@ -31949,17 +31949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz004.txt
 centroid = (0.8512861, -1.6722122)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz005.txt
 description = Roseau County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz005.txt
 station = ('krox', 0.0018242)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz005.txt
 
@@ -31967,17 +31967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz005.txt
 centroid = (0.8512302, -1.6564065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz006.txt
 description = Lake Of The Woods, Lake of the Woods County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz006.txt
 station = ('kbde', 0.0033866)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz006.txt
 
@@ -31985,17 +31985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz006.txt
 centroid = (0.8440273, -1.6888801)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz007.txt
 description = West Marshall County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz007.txt
 station = ('khco', 0.0071683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz007.txt
 
@@ -32003,17 +32003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz007.txt
 centroid = (0.8439906, -1.6754480)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz008.txt
 description = East Marshall County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz008.txt
 station = ('ktvf', 0.0055170)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz008.txt
 
@@ -32021,17 +32021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz008.txt
 centroid = (0.8405977, -1.6582792)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz009.txt
 description = North Beltrami County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz009.txt
 station = ('kvwu', 0.0057703)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz009.txt
 
@@ -32039,17 +32039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz009.txt
 centroid = (0.8419852, -1.6368989)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz010.txt
 description = Koochiching County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz010.txt
 station = ('kinl', 0.0072262)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz010.txt
 
@@ -32057,17 +32057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz010.txt
 centroid = (0.8401840, -1.6149427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz011.txt
 description = North St. Louis County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz011.txt
 station = ('kcdd', 0.0022863)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz011.txt
 
@@ -32075,17 +32075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz011.txt
 centroid = (0.8346828, -1.5917071)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz012.txt
 description = Northern Cook/Northern Lake County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz012.txt
 station = ('kckc', 0.0095530)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz012.txt
 
@@ -32093,17 +32093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz012.txt
 centroid = (0.8389134, -1.6761566)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz013.txt
 description = Pennington County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz013.txt
 station = ('ktvf', 0.0017103)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz013.txt
 
@@ -32111,17 +32111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz013.txt
 centroid = (0.8355188, -1.6771794)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz014.txt
 description = Red Lake County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz014.txt
 station = ('ktvf', 0.0035549)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz014.txt
 
@@ -32129,17 +32129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz014.txt
 centroid = (0.8317838, -1.6740849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz015.txt
 description = East Polk County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz015.txt
 station = ('kfse', 0.0020445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz015.txt
 
@@ -32147,17 +32147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz015.txt
 centroid = (0.8334296, -1.6648539)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz016.txt
 description = North Clearwater County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz016.txt
 station = ('kfse', 0.0053023)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz016.txt
 
@@ -32165,17 +32165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz016.txt
 centroid = (0.8313230, -1.6546105)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz017.txt
 description = South Beltrami County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz017.txt
 station = ('kbji', 0.0027634)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz017.txt
 
@@ -32183,17 +32183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz017.txt
 centroid = (0.8319007, -1.6358936)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz018.txt
 description = North Itasca County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz018.txt
 station = ('kfoz', 0.0022673)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz018.txt
 
@@ -32201,17 +32201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz018.txt
 centroid = (0.8280907, -1.6132986)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz019.txt
 description = Central St. Louis County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz019.txt
 station = ('kevm', 0.0009215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz019.txt
 
@@ -32219,17 +32219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz019.txt
 centroid = (0.8252266, -1.5960669)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz020.txt
 description = Southern Lake/North Shore, St. Louis County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz020.txt
 station = ('ktwm', 0.0054080)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz020.txt
 
@@ -32237,17 +32237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz020.txt
 centroid = (0.8343250, -1.5779818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz021.txt
 description = Southern Cook/North Shore, Cook County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz021.txt
 station = ('kgna', 0.0006207)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz021.txt
 
@@ -32255,17 +32255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz021.txt
 centroid = (0.8259806, -1.6721825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz022.txt
 description = Mahnomen County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz022.txt
 station = ('k3n8', 0.0018063)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz022.txt
 
@@ -32273,17 +32273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz022.txt
 centroid = (0.8259387, -1.6644210)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz023.txt
 description = South Clearwater County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz023.txt
 station = ('k3n8', 0.0067622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz023.txt
 
@@ -32291,17 +32291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz023.txt
 centroid = (0.8222019, -1.6566072)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz024.txt
 description = Hubbard County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz024.txt
 station = ('kpkd', 0.0040568)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz024.txt
 
@@ -32309,17 +32309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz024.txt
 centroid = (0.8221181, -1.6447005)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz025.txt
 description = North Cass County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz025.txt
 station = ('kxvg', 0.0020160)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz025.txt
 
@@ -32327,17 +32327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz025.txt
 centroid = (0.8248356, -1.6314326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz026.txt
 description = South Itasca County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz026.txt
 station = ('kgpz', 0.0009026)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz026.txt
 
@@ -32345,17 +32345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz026.txt
 centroid = (0.8191842, -1.6741704)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz027.txt
 description = West Becker County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz027.txt
 station = ('kdtl', 0.0018496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz027.txt
 
@@ -32363,17 +32363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz027.txt
 centroid = (0.8191424, -1.6652937)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz028.txt
 description = East Becker County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz028.txt
 station = ('kdtl', 0.0058614)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz028.txt
 
@@ -32381,17 +32381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz028.txt
 centroid = (0.8090823, -1.6836912)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz029.txt
 description = Wilkin County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz029.txt
 station = ('kbwp', 0.0025883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz029.txt
 
@@ -32399,17 +32399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz029.txt
 centroid = (0.8099392, -1.6758215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz030.txt
 description = West Otter Tail County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz030.txt
 station = ('kffm', 0.0026720)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz030.txt
 
@@ -32417,17 +32417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz030.txt
 centroid = (0.8100230, -1.6661332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz031.txt
 description = East Otter Tail County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz031.txt
 station = ('kadc', 0.0031033)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz031.txt
 
@@ -32435,17 +32435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz031.txt
 centroid = (0.8130756, -1.6575287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz032.txt
 description = Wadena County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz032.txt
 station = ('kadc', 0.0037420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz032.txt
 
@@ -32453,17 +32453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz032.txt
 centroid = (0.8127056, -1.6502472)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz033.txt
 description = South Cass County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz033.txt
 station = ('kpwc', 0.0034522)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz033.txt
 
@@ -32471,17 +32471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz033.txt
 centroid = (0.8112709, -1.6418469)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz034.txt
 description = Crow Wing County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz034.txt
 station = ('kbrd', 0.0016224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz034.txt
 
@@ -32489,17 +32489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz034.txt
 centroid = (0.8172679, -1.6304604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz035.txt
 description = Northern Aitkin County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz035.txt
 station = ('khzx', 0.0038465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz035.txt
 
@@ -32507,17 +32507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz035.txt
 centroid = (0.8099986, -1.6303574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz036.txt
 description = South Aitkin County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz036.txt
 station = ('khzx', 0.0038532)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz036.txt
 
@@ -32525,17 +32525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz036.txt
 centroid = (0.8159694, -1.6158276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz037.txt
 description = Carlton/South St. Louis County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz037.txt
 station = ('kcoq', 0.0013151)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz037.txt
 
@@ -32543,17 +32543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz037.txt
 centroid = (0.8049598, -1.6186428)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz038.txt
 description = Pine County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz038.txt
 station = ('k04w', 0.0025303)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz038.txt
 
@@ -32561,17 +32561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz038.txt
 centroid = (0.7988739, -1.6837471)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz039.txt
 description = Traverse County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz039.txt
 station = ('keth', 0.0007575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz039.txt
 
@@ -32579,17 +32579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz039.txt
 centroid = (0.8016995, -1.6757273)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz040.txt
 description = Grant County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz040.txt
 station = ('ky63', 0.0009291)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz040.txt
 
@@ -32597,17 +32597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz040.txt
 centroid = (0.8016943, -1.6659779)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz041.txt
 description = Douglas County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz041.txt
 station = ('kaxn', 0.0013383)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz041.txt
 
@@ -32615,17 +32615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz041.txt
 centroid = (0.8040837, -1.6562756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz042.txt
 description = Todd County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz042.txt
 station = ('k14y', 0.0030011)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz042.txt
 
@@ -32633,17 +32633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz042.txt
 centroid = (0.8030714, -1.6452940)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz043.txt
 description = Morrison County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz043.txt
 station = ('klxl', 0.0014742)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz043.txt
 
@@ -32651,17 +32651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz043.txt
 centroid = (0.8017694, -1.6341535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz044.txt
 description = Mille Lacs County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz044.txt
 station = ('kjmr', 0.0044458)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz044.txt
 
@@ -32669,17 +32669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz044.txt
 centroid = (0.8018968, -1.6282787)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz045.txt
 description = Kanabec County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz045.txt
 station = ('kjmr', 0.0010665)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz045.txt
 
@@ -32687,17 +32687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz045.txt
 centroid = (0.7928350, -1.6826894)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz046.txt
 description = Big Stone County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz046.txt
 station = ('kvvv', 0.0021103)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz046.txt
 
@@ -32705,17 +32705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz046.txt
 centroid = (0.7956275, -1.6755213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz047.txt
 description = Stevens County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz047.txt
 station = ('kmox', 0.0005328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz047.txt
 
@@ -32723,17 +32723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz047.txt
 centroid = (0.7956258, -1.6658208)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz048.txt
 description = Pope County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz048.txt
 station = ('kghw', 0.0019191)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz048.txt
 
@@ -32741,17 +32741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz048.txt
 centroid = (0.7950359, -1.6513084)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz049.txt
 description = Stearns County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz049.txt
 station = ('kpex', 0.0035403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz049.txt
 
@@ -32759,17 +32759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz049.txt
 centroid = (0.7975998, -1.6405903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz050.txt
 description = Benton County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz050.txt
 station = ('kstc', 0.0026760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz050.txt
 
@@ -32777,17 +32777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz050.txt
 centroid = (0.7931457, -1.6366738)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz051.txt
 description = Sherburne County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz051.txt
 station = ('kpnm', 0.0028260)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz051.txt
 
@@ -32795,17 +32795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz051.txt
 centroid = (0.7951982, -1.6283084)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz052.txt
 description = Isanti County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz052.txt
 station = ('kcbg', 0.0003601)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz052.txt
 
@@ -32813,17 +32813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz052.txt
 centroid = (0.7941684, -1.6215557)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz053.txt
 description = Chisago County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz053.txt
 station = ('kros', 0.0034566)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz053.txt
 
@@ -32831,17 +32831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz053.txt
 centroid = (0.7853196, -1.6785442)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz054.txt
 description = Lac Qui Parle, Lac qui Parle County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz054.txt
 station = ('kdxx', 0.0001722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz054.txt
 
@@ -32849,17 +32849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz054.txt
 centroid = (0.7903322, -1.6699555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz055.txt
 description = Swift County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz055.txt
 station = ('kbbb', 0.0007071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz055.txt
 
@@ -32867,17 +32867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz055.txt
 centroid = (0.7857874, -1.6679518)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz056.txt
 description = Chippewa County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz056.txt
 station = ('kmve', 0.0020913)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz056.txt
 
@@ -32885,17 +32885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz056.txt
 centroid = (0.7880580, -1.6581466)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz057.txt
 description = Kandiyohi County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz057.txt
 station = ('kbdh', 0.0016830)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz057.txt
 
@@ -32903,17 +32903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz057.txt
 centroid = (0.7875467, -1.6498144)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz058.txt
 description = Meeker County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz058.txt
 station = ('kljf', 0.0005155)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz058.txt
 
@@ -32921,17 +32921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz058.txt
 centroid = (0.7884333, -1.6399637)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz059.txt
 description = Wright County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz059.txt
 station = ('kmgg', 0.0011207)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz059.txt
 
@@ -32939,17 +32939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz059.txt
 centroid = (0.7854767, -1.6314779)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz060.txt
 description = Hennepin County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz060.txt
 station = ('kmic', 0.0019034)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz060.txt
 
@@ -32957,17 +32957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz060.txt
 centroid = (0.7901664, -1.6274567)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz061.txt
 description = Anoka County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz061.txt
 station = ('kane', 0.0021811)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz061.txt
 
@@ -32975,17 +32975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz061.txt
 centroid = (0.7856966, -1.6248911)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz062.txt
 description = Ramsey County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz062.txt
 station = ('kstp', 0.0015841)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz062.txt
 
@@ -32993,17 +32993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz062.txt
 centroid = (0.7860666, -1.6211299)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz063.txt
 description = Washington County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz063.txt
 station = ('k21d', 0.0007885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz063.txt
 
@@ -33011,17 +33011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz063.txt
 centroid = (0.7804449, -1.6732175)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz064.txt
 description = Yellow Medicine County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz064.txt
 station = ('kmml', 0.0046902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz064.txt
 
@@ -33029,17 +33029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz064.txt
 centroid = (0.7806299, -1.6571413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz065.txt
 description = Renville County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz065.txt
 station = ('kovl', 0.0013938)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz065.txt
 
@@ -33047,17 +33047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz065.txt
 centroid = (0.7823177, -1.6453638)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz066.txt
 description = McLeod County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz066.txt
 station = ('khcd', 0.0015659)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz066.txt
 
@@ -33065,17 +33065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz066.txt
 centroid = (0.7780591, -1.6446604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz067.txt
 description = Sibley County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz067.txt
 station = ('kgyl', 0.0036075)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz067.txt
 
@@ -33083,17 +33083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz067.txt
 centroid = (0.7822705, -1.6371625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz068.txt
 description = Carver County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz068.txt
 station = ('kfcm', 0.0041173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz068.txt
 
@@ -33101,17 +33101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz068.txt
 centroid = (0.7792616, -1.6325059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz069.txt
 description = Scott County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz069.txt
 station = ('kfcm', 0.0033092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz069.txt
 
@@ -33119,17 +33119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz069.txt
 centroid = (0.7796700, -1.6243011)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz070.txt
 description = Dakota County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz070.txt
 station = ('klvn', 0.0021585)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz070.txt
 
@@ -33137,17 +33137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz070.txt
 centroid = (0.7751461, -1.6801779)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz071.txt
 description = Lincoln County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz071.txt
 station = ('kcnb', 0.0053070)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz071.txt
 
@@ -33155,17 +33155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz071.txt
 centroid = (0.7751618, -1.6727061)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz072.txt
 description = Lyon County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz072.txt
 station = ('kmml', 0.0006952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz072.txt
 
@@ -33173,17 +33173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz072.txt
 centroid = (0.7749908, -1.6624942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz073.txt
 description = Redwood County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz073.txt
 station = ('krwf', 0.0033214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz073.txt
 
@@ -33191,17 +33191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz073.txt
 centroid = (0.7721703, -1.6533103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz074.txt
 description = Brown County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz074.txt
 station = ('kulm', 0.0031288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz074.txt
 
@@ -33209,17 +33209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz074.txt
 centroid = (0.7740535, -1.6449274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz075.txt
 description = Nicollet County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz075.txt
 station = ('kulm', 0.0032067)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz075.txt
 
@@ -33227,17 +33227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz075.txt
 centroid = (0.7744270, -1.6358971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz076.txt
 description = Le Sueur County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz076.txt
 station = ('kmkt', 0.0035681)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz076.txt
 
@@ -33245,17 +33245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz076.txt
 centroid = (0.7741251, -1.6283329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz077.txt
 description = Rice County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz077.txt
 station = ('kfbl', 0.0004406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz077.txt
 
@@ -33263,17 +33263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz077.txt
 centroid = (0.7750990, -1.6183129)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz078.txt
 description = Goodhue County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz078.txt
 station = ('krgk', 0.0043094)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz078.txt
 
@@ -33281,17 +33281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz078.txt
 centroid = (0.7729051, -1.6097224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz079.txt
 description = Wabasha County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz079.txt
 station = ('k9mn', 0.0055829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz079.txt
 
@@ -33299,17 +33299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz079.txt
 centroid = (0.7683306, -1.6713831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz080.txt
 description = Murray County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz080.txt
 station = ('kdvp', 0.0006642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz080.txt
 
@@ -33317,17 +33317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz080.txt
 centroid = (0.7680688, -1.6612253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz081.txt
 description = Cottonwood County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz081.txt
 station = ('kmwm', 0.0018684)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz081.txt
 
@@ -33335,17 +33335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz081.txt
 centroid = (0.7675661, -1.6513276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz082.txt
 description = Watonwan County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz082.txt
 station = ('kjyg', 0.0007179)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz082.txt
 
@@ -33353,17 +33353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz082.txt
 centroid = (0.7685488, -1.6417806)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz083.txt
 description = Blue Earth County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz083.txt
 station = ('kmkt', 0.0036945)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz083.txt
 
@@ -33371,17 +33371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz083.txt
 centroid = (0.7683306, -1.6334065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz084.txt
 description = Waseca County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz084.txt
 station = ('kacq', 0.0009920)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz084.txt
 
@@ -33389,17 +33389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz084.txt
 centroid = (0.7683341, -1.6271006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz085.txt
 description = Steele County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz085.txt
 station = ('kowa', 0.0016743)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz085.txt
 
@@ -33407,17 +33407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz085.txt
 centroid = (0.7683376, -1.6207476)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz086.txt
 description = Dodge County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz086.txt
 station = ('ktob', 0.0003919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz086.txt
 
@@ -33425,17 +33425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz086.txt
 centroid = (0.7680077, -1.6127156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz087.txt
 description = Olmsted County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz087.txt
 station = ('k9mn', 0.0010599)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz087.txt
 
@@ -33443,17 +33443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz087.txt
 centroid = (0.7677162, -1.6018475)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz088.txt
 description = Winona County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz088.txt
 station = ('kona', 0.0019539)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz088.txt
 
@@ -33461,17 +33461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz088.txt
 centroid = (0.7622586, -1.6712121)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz089.txt
 description = Nobles County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz089.txt
 station = ('kotg', 0.0021884)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz089.txt
 
@@ -33479,17 +33479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz089.txt
 centroid = (0.7622568, -1.6607523)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz090.txt
 description = Jackson County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz090.txt
 station = ('kmjq', 0.0021968)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz090.txt
 
@@ -33497,17 +33497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz090.txt
 centroid = (0.7622586, -1.6502280)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz091.txt
 description = Martin County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz091.txt
 station = ('kfrm', 0.0017491)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz091.txt
 
@@ -33515,17 +33515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz091.txt
 centroid = (0.7622534, -1.6397002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz092.txt
 description = Faribault County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz092.txt
 station = ('kfrm', 0.0059334)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz092.txt
 
@@ -33533,17 +33533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz092.txt
 centroid = (0.7622516, -1.6292457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz093.txt
 description = Freeborn County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz093.txt
 station = ('kael', 0.0002792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz093.txt
 
@@ -33551,17 +33551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz093.txt
 centroid = (0.7622097, -1.6188365)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz094.txt
 description = Mower County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz094.txt
 station = ('kaum', 0.0022845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz094.txt
 
@@ -33569,17 +33569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz094.txt
 centroid = (0.7622551, -1.6072755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz095.txt
 description = Fillmore County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz095.txt
 station = ('kfka', 0.0011323)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz095.txt
 
@@ -33587,17 +33587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz095.txt
 centroid = (0.7622097, -1.5968506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz096.txt
 description = Houston County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz096.txt
 station = ('klse', 0.0048004)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz096.txt
 
@@ -33605,17 +33605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz096.txt
 centroid = (0.7683463, -1.6800295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz097.txt
 description = Pipestone County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz097.txt
 station = ('kdvp', 0.0060104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz097.txt
 
@@ -33623,17 +33623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz097.txt
 centroid = (0.7622673, -1.6799353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mn/mnz098.txt
 description = Rock County, MN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mn/mnc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mn/mnc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mn/mnz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mn/mnz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mn/mnc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mn/mnc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mn/mnc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mn/mnz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mn/mnz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz098.txt
 station = ('klyv', 0.0010492)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz098.txt
 
@@ -33641,17 +33641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz098.txt
 centroid = (0.7056488, -1.6655153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz001.txt
 description = Atchison County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz001.txt
 station = ('ksda', 0.0055745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz001.txt
 
@@ -33659,17 +33659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz001.txt
 centroid = (0.7044271, -1.6560277)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz002.txt
 description = Nodaway County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz002.txt
 station = ('kevu', 0.0004440)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz002.txt
 
@@ -33677,17 +33677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz002.txt
 centroid = (0.7064936, -1.6479783)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz003.txt
 description = Worth County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc227.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc227.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc227.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc227.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc227.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz003.txt
 station = ('kevu', 0.0069112)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc227.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz003.txt
 
@@ -33695,17 +33695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz003.txt
 centroid = (0.7018335, -1.6477636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz004.txt
 description = Gentry County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz004.txt
 station = ('kevu', 0.0071577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz004.txt
 
@@ -33713,17 +33713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz004.txt
 centroid = (0.7043224, -1.6404716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz005.txt
 description = Harrison County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz005.txt
 station = ('klwd', 0.0050144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz005.txt
 
@@ -33731,17 +33731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz005.txt
 centroid = (0.7055022, -1.6330784)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz006.txt
 description = Mercer County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz006.txt
 station = ('klwd', 0.0057364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz006.txt
 
@@ -33749,17 +33749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz006.txt
 centroid = (0.7064901, -1.6234372)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz007.txt
 description = Putnam County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz007.txt
 station = ('ktvk', 0.0038896)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz007.txt
 
@@ -33767,17 +33767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz007.txt
 centroid = (0.7063382, -1.6147943)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz008.txt
 description = Schuyler County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz008.txt
 station = ('kirk', 0.0064728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz008.txt
 
@@ -33785,17 +33785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz008.txt
 centroid = (0.7060311, -1.6082703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz009.txt
 description = Scotland County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz009.txt
 station = ('kirk', 0.0081642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz009.txt
 
@@ -33803,17 +33803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz009.txt
 centroid = (0.7052928, -1.6011371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz010.txt
 description = Clark County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz010.txt
 station = ('keok', 0.0041701)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz010.txt
 
@@ -33821,17 +33821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz010.txt
 centroid = (0.6997828, -1.6618152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz011.txt
 description = Holt County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz011.txt
 station = ('kevu', 0.0060203)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz011.txt
 
@@ -33839,17 +33839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz011.txt
 centroid = (0.6978420, -1.6546070)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz012.txt
 description = Andrew County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz012.txt
 station = ('kstj', 0.0040826)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz012.txt
 
@@ -33857,17 +33857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz012.txt
 centroid = (0.6962677, -1.6476728)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz013.txt
 description = De Kalb, DeKalb County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz013.txt
 station = ('kezz', 0.0033634)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz013.txt
 
@@ -33875,17 +33875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz013.txt
 centroid = (0.6974458, -1.6403564)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz014.txt
 description = Daviess County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz014.txt
 station = ('kezz', 0.0056345)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz014.txt
 
@@ -33893,17 +33893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz014.txt
 centroid = (0.7001214, -1.6330226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz015.txt
 description = Grundy County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz015.txt
 station = ('kcdj', 0.0051950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz015.txt
 
@@ -33911,17 +33911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz015.txt
 centroid = (0.7018091, -1.6251022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz016.txt
 description = Sullivan County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc211.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc211.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc211.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc211.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc211.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz016.txt
 station = ('ktvk', 0.0087193)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc211.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz016.txt
 
@@ -33929,17 +33929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz016.txt
 centroid = (0.7014583, -1.6161871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz017.txt
 description = Adair County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz017.txt
 station = ('kirk', 0.0017199)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz017.txt
 
@@ -33947,17 +33947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz017.txt
 centroid = (0.7003692, -1.6082877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz018.txt
 description = Knox County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz018.txt
 station = ('kirk', 0.0053869)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz018.txt
 
@@ -33965,17 +33965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz018.txt
 centroid = (0.6998229, -1.6008544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz019.txt
 description = Lewis County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz019.txt
 station = ('khae', 0.0074930)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz019.txt
 
@@ -33983,17 +33983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz019.txt
 centroid = (0.6921941, -1.6546803)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz020.txt
 description = Buchanan County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz020.txt
 station = ('kstj', 0.0023830)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz020.txt
 
@@ -34001,17 +34001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz020.txt
 centroid = (0.6911818, -1.6476711)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz021.txt
 description = Clinton County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz021.txt
 station = ('kezz', 0.0027906)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz021.txt
 
@@ -34019,17 +34019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz021.txt
 centroid = (0.6921225, -1.6403093)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz022.txt
 description = Caldwell County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz022.txt
 station = ('kezz', 0.0041379)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz022.txt
 
@@ -34037,17 +34037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz022.txt
 centroid = (0.6943286, -1.6327258)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz023.txt
 description = Livingston County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz023.txt
 station = ('kcdj', 0.0007646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz023.txt
 
@@ -34055,17 +34055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz023.txt
 centroid = (0.6958663, -1.6250272)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz024.txt
 description = Linn County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz024.txt
 station = ('kcdj', 0.0064485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz024.txt
 
@@ -34073,17 +34073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz024.txt
 centroid = (0.6951786, -1.6155570)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz025.txt
 description = Macon County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz025.txt
 station = ('kirk', 0.0047025)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz025.txt
 
@@ -34091,17 +34091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz025.txt
 centroid = (0.6946026, -1.6070398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz026.txt
 description = Shelby County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc205.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc205.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc205.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc205.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc205.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz026.txt
 station = ('kmby', 0.0074979)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc205.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz026.txt
 
@@ -34109,17 +34109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz026.txt
 centroid = (0.6947458, -1.5991125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz027.txt
 description = Marion County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz027.txt
 station = ('khae', 0.0027876)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz027.txt
 
@@ -34127,17 +34127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz027.txt
 centroid = (0.6873176, -1.6541114)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz028.txt
 description = Platte County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz028.txt
 station = ('kmci', 0.0015048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz028.txt
 
@@ -34145,17 +34145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz028.txt
 centroid = (0.6860977, -1.6479538)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz029.txt
 description = Clay County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz029.txt
 station = ('kgph', 0.0015497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz029.txt
 
@@ -34163,17 +34163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz029.txt
 centroid = (0.6868289, -1.6404332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz030.txt
 description = Ray County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz030.txt
 station = ('kgph', 0.0043292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz030.txt
 
@@ -34181,17 +34181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz030.txt
 centroid = (0.6881275, -1.6319719)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz031.txt
 description = Carroll County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz031.txt
 station = ('kcdj', 0.0068853)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz031.txt
 
@@ -34199,17 +34199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz031.txt
 centroid = (0.6896581, -1.6225035)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz032.txt
 description = Chariton County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz032.txt
 station = ('kmby', 0.0072488)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz032.txt
 
@@ -34217,17 +34217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz032.txt
 centroid = (0.6883613, -1.6143789)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz033.txt
 description = Randolph County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz033.txt
 station = ('kmby', 0.0010180)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz033.txt
 
@@ -34235,17 +34235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz033.txt
 centroid = (0.6893265, -1.6057151)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz034.txt
 description = Monroe County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz034.txt
 station = ('kmby', 0.0057867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz034.txt
 
@@ -34253,17 +34253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz034.txt
 centroid = (0.6898868, -1.5973602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz035.txt
 description = Ralls County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz035.txt
 station = ('khae', 0.0035941)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz035.txt
 
@@ -34271,17 +34271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz035.txt
 centroid = (0.6866789, -1.5912411)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz036.txt
 description = Pike County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz036.txt
 station = ('kppq', 0.0073861)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz036.txt
 
@@ -34289,17 +34289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz036.txt
 centroid = (0.6808268, -1.6466501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz037.txt
 description = Jackson County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz037.txt
 station = ('klxt', 0.0007816)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz037.txt
 
@@ -34307,17 +34307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz037.txt
 centroid = (0.6818233, -1.6368658)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz038.txt
 description = Lafayette County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz038.txt
 station = ('krcm', 0.0049171)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz038.txt
 
@@ -34325,17 +34325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz038.txt
 centroid = (0.6830625, -1.6266853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz039.txt
 description = Saline County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz039.txt
 station = ('kmhl', 0.0007122)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz039.txt
 
@@ -34343,17 +34343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz039.txt
 centroid = (0.6831690, -1.6178469)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz040.txt
 description = Howard County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz040.txt
 station = ('kver', 0.0034254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz040.txt
 
@@ -34361,17 +34361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz040.txt
 centroid = (0.6805161, -1.6111065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz041.txt
 description = Boone County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz041.txt
 station = ('kcou', 0.0032893)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz041.txt
 
@@ -34379,17 +34379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz041.txt
 centroid = (0.6844448, -1.6029383)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz042.txt
 description = Audrain County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz042.txt
 station = ('kmyj', 0.0010652)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz042.txt
 
@@ -34397,17 +34397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz042.txt
 centroid = (0.6745174, -1.6468019)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz043.txt
 description = Cass County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz043.txt
 station = ('klry', 0.0006661)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz043.txt
 
@@ -34415,17 +34415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz043.txt
 centroid = (0.6762121, -1.6372288)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz044.txt
 description = Johnson County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz044.txt
 station = ('krcm', 0.0007014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz044.txt
 
@@ -34433,17 +34433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz044.txt
 centroid = (0.6759363, -1.6281321)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz045.txt
 description = Pettis County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz045.txt
 station = ('kdmo', 0.0016254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz045.txt
 
@@ -34451,17 +34451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz045.txt
 centroid = (0.6779539, -1.6198453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz046.txt
 description = Cooper County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz046.txt
 station = ('kver', 0.0024947)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz046.txt
 
@@ -34469,17 +34469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz046.txt
 centroid = (0.6742678, -1.6158799)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz047.txt
 description = Moniteau County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz047.txt
 station = ('kver', 0.0056454)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz047.txt
 
@@ -34487,17 +34487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz047.txt
 centroid = (0.6720478, -1.6106178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz048.txt
 description = Cole County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz048.txt
 station = ('kjef', 0.0024386)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz048.txt
 
@@ -34505,17 +34505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz048.txt
 centroid = (0.6712606, -1.6032909)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz049.txt
 description = Osage County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz049.txt
 station = ('kjef', 0.0046282)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz049.txt
 
@@ -34523,17 +34523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz049.txt
 centroid = (0.6778073, -1.6044114)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz050.txt
 description = Callaway County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz050.txt
 station = ('kcou', 0.0039658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz050.txt
 
@@ -34541,17 +34541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz050.txt
 centroid = (0.6796574, -1.5964562)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz051.txt
 description = Montgomery County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz051.txt
 station = ('kmyj', 0.0060394)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz051.txt
 
@@ -34559,17 +34559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz051.txt
 centroid = (0.6816924, -1.5875550)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz052.txt
 description = Lincoln County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz052.txt
 station = ('kfyg', 0.0082245)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz052.txt
 
@@ -34577,17 +34577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz052.txt
 centroid = (0.6677158, -1.6465436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz053.txt
 description = Bates County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz053.txt
 station = ('klry', 0.0061536)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz053.txt
 
@@ -34595,17 +34595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz053.txt
 centroid = (0.6699481, -1.6369914)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz054.txt
 description = Henry County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz054.txt
 station = ('kgly', 0.0015664)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz054.txt
 
@@ -34613,17 +34613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz054.txt
 centroid = (0.6683703, -1.6281810)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz055.txt
 description = Benton County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz055.txt
 station = ('kraw', 0.0012028)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz055.txt
 
@@ -34631,17 +34631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz055.txt
 centroid = (0.6706236, -1.6211683)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz056.txt
 description = Morgan County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz056.txt
 station = ('kdmo', 0.0063849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz056.txt
 
@@ -34649,17 +34649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz056.txt
 centroid = (0.6669688, -1.6131799)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz057.txt
 description = Miller County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz057.txt
 station = ('kaiz', 0.0026036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz057.txt
 
@@ -34667,17 +34667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz057.txt
 centroid = (0.6660456, -1.6043922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz058.txt
 description = Maries County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz058.txt
 station = ('kvih', 0.0022272)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz058.txt
 
@@ -34685,17 +34685,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz058.txt
 centroid = (0.6709203, -1.5971141)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz059.txt
 description = Gasconade County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz059.txt
 station = ('kuuv', 0.0059354)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz059.txt
 
@@ -34703,17 +34703,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz059.txt
 centroid = (0.6765699, -1.5910544)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz060.txt
 description = Warren County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc219.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc219.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc219.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc219.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc219.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz060.txt
 station = ('kfyg', 0.0038360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc219.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz060.txt
 
@@ -34721,17 +34721,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz060.txt
 centroid = (0.6768718, -1.5825808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz061.txt
 description = St. Charles County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz061.txt
 station = ('ksus', 0.0023275)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz061.txt
 
@@ -34739,17 +34739,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz061.txt
 centroid = (0.6704019, -1.5895586)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz062.txt
 description = Franklin County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz062.txt
 station = ('kfyg', 0.0032725)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz062.txt
 
@@ -34757,17 +34757,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz062.txt
 centroid = (0.6744074, -1.5785281)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz063.txt
 description = St. Louis County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz063.txt
 station = ('kstl', 0.0021726)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz063.txt
 
@@ -34775,17 +34775,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz063.txt
 centroid = (0.6743219, -1.5750724)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz064.txt
 description = St. Louis City County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc510.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc510.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc510.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc510.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc510.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz064.txt
 station = ('kcps', 0.0017706)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc510.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz064.txt
 
@@ -34793,17 +34793,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz064.txt
 centroid = (0.6677804, -1.5801827)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz065.txt
 description = Jefferson County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz065.txt
 station = ('ksus', 0.0069604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz065.txt
 
@@ -34811,17 +34811,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz065.txt
 centroid = (0.6606176, -1.6465855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz066.txt
 description = Vernon County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc217.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc217.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc217.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc217.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc217.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz066.txt
 station = ('kfsk', 0.0059568)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc217.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz066.txt
 
@@ -34829,17 +34829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz066.txt
 centroid = (0.6638726, -1.6367000)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz067.txt
 description = St. Clair County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz067.txt
 station = ('kgly', 0.0057168)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz067.txt
 
@@ -34847,17 +34847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz067.txt
 centroid = (0.6621919, -1.6287535)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz068.txt
 description = Hickory County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz068.txt
 station = ('kraw', 0.0070959)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz068.txt
 
@@ -34865,17 +34865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz068.txt
 centroid = (0.6636981, -1.6190721)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz069.txt
 description = Camden County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz069.txt
 station = ('kozs', 0.0013838)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz069.txt
 
@@ -34883,17 +34883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz069.txt
 centroid = (0.6601638, -1.6093262)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz070.txt
 description = Pulaski County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz070.txt
 station = ('ktbn', 0.0018939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz070.txt
 
@@ -34901,17 +34901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz070.txt
 centroid = (0.6610801, -1.6020796)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz071.txt
 description = Phelps County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz071.txt
 station = ('kvih', 0.0044861)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz071.txt
 
@@ -34919,17 +34919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz071.txt
 centroid = (0.6628132, -1.5935554)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz072.txt
 description = Crawford County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz072.txt
 station = ('kuuv', 0.0048802)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz072.txt
 
@@ -34937,17 +34937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz072.txt
 centroid = (0.6625567, -1.5861098)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz073.txt
 description = Washington County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc221.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc221.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc221.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc221.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc221.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz073.txt
 station = ('kuuv', 0.0061670)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc221.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz073.txt
 
@@ -34955,17 +34955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz073.txt
 centroid = (0.6599160, -1.5790500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz074.txt
 description = St. Francois County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz074.txt
 station = ('kfam', 0.0009383)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz074.txt
 
@@ -34973,17 +34973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz074.txt
 centroid = (0.6613751, -1.5742032)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz075.txt
 description = Ste. Genevieve County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc186.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc186.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc186.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc186.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc186.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz075.txt
 station = ('kfam', 0.0039642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc186.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz075.txt
 
@@ -34991,17 +34991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz075.txt
 centroid = (0.6581130, -1.5677315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz076.txt
 description = Perry County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz076.txt
 station = ('kpcd', 0.0028679)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz076.txt
 
@@ -35009,17 +35009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz076.txt
 centroid = (0.6545386, -1.6466675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz077.txt
 description = Barton County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz077.txt
 station = ('kjln', 0.0065047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz077.txt
 
@@ -35027,17 +35027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz077.txt
 centroid = (0.6584045, -1.6381067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz078.txt
 description = Cedar County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz078.txt
 station = ('ksgf', 0.0107817)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz078.txt
 
@@ -35045,17 +35045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz078.txt
 centroid = (0.6565318, -1.6301462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz079.txt
 description = Polk County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz079.txt
 station = ('ksgf', 0.0066918)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz079.txt
 
@@ -35063,17 +35063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz079.txt
 centroid = (0.6576470, -1.6235681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz080.txt
 description = Dallas County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz080.txt
 station = ('klbo', 0.0051591)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz080.txt
 
@@ -35081,17 +35081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz080.txt
 centroid = (0.6572613, -1.6160056)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz081.txt
 description = Laclede County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz081.txt
 station = ('klbo', 0.0008756)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz081.txt
 
@@ -35099,17 +35099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz081.txt
 centroid = (0.6513098, -1.6050938)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz082.txt
 description = Texas County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc215.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc215.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc215.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc215.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc215.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz082.txt
 station = ('ktbn', 0.0076254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc215.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz082.txt
 
@@ -35117,17 +35117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz082.txt
 centroid = (0.6563590, -1.5971141)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz083.txt
 description = Dent County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz083.txt
 station = ('ktbn', 0.0089190)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz083.txt
 
@@ -35135,17 +35135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz083.txt
 centroid = (0.6554619, -1.5842964)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz084.txt
 description = Iron County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz084.txt
 station = ('kfam', 0.0059759)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz084.txt
 
@@ -35153,17 +35153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz084.txt
 centroid = (0.6541162, -1.5768177)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz085.txt
 description = Madison County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz085.txt
 station = ('kfam', 0.0051824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz085.txt
 
@@ -35171,17 +35171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz085.txt
 centroid = (0.6513953, -1.5712484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz086.txt
 description = Bollinger County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz086.txt
 station = ('kcgi', 0.0063389)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz086.txt
 
@@ -35189,17 +35189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz086.txt
 centroid = (0.6524721, -1.5652898)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz087.txt
 description = Cape Girardeau County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz087.txt
 station = ('kcgi', 0.0029796)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz087.txt
 
@@ -35207,17 +35207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz087.txt
 centroid = (0.6493236, -1.6465541)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz088.txt
 description = Jasper County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz088.txt
 station = ('kjln', 0.0024053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz088.txt
 
@@ -35225,17 +35225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz088.txt
 centroid = (0.6533116, -1.6379967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz089.txt
 description = Dade County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz089.txt
 station = ('ksgf', 0.0073497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz089.txt
 
@@ -35243,17 +35243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz089.txt
 centroid = (0.6502765, -1.6291252)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz090.txt
 description = Greene County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz090.txt
 station = ('ksgf', 0.0007188)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz090.txt
 
@@ -35261,17 +35261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz090.txt
 centroid = (0.6506745, -1.6209903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz091.txt
 description = Webster County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc225.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc225.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc225.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc225.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc225.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz091.txt
 station = ('klbo', 0.0071207)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc225.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz091.txt
 
@@ -35279,17 +35279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz091.txt
 centroid = (0.6504860, -1.6138833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz092.txt
 description = Wright County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz092.txt
 station = ('klbo', 0.0070745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz092.txt
 
@@ -35297,17 +35297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz092.txt
 centroid = (0.6441225, -1.6465297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz093.txt
 description = Newton County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz093.txt
 station = ('khfj', 0.0045552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz093.txt
 
@@ -35315,17 +35315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz093.txt
 centroid = (0.6476289, -1.6376931)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz094.txt
 description = Lawrence County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz094.txt
 station = ('khfj', 0.0043007)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz094.txt
 
@@ -35333,17 +35333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz094.txt
 centroid = (0.6452412, -1.6264531)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz095.txt
 description = Christian County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz095.txt
 station = ('ksgf', 0.0053398)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz095.txt
 
@@ -35351,17 +35351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz095.txt
 centroid = (0.6445955, -1.6144086)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz096.txt
 description = Douglas County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz096.txt
 station = ('kbpk', 0.0098876)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz096.txt
 
@@ -35369,17 +35369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz096.txt
 centroid = (0.6418274, -1.6037220)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz097.txt
 description = Howell County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz097.txt
 station = ('kuno', 0.0019175)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz097.txt
 
@@ -35387,17 +35387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz097.txt
 centroid = (0.6485190, -1.5952397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz098.txt
 description = Shannon County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc203.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc203.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc203.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc203.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc203.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz098.txt
 station = ('kuno', 0.0084457)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc203.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz098.txt
 
@@ -35405,17 +35405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz098.txt
 centroid = (0.6520952, -1.5877103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz099.txt
 description = Reynolds County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz099.txt
 station = ('kfam', 0.0102346)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz099.txt
 
@@ -35423,17 +35423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz099.txt
 centroid = (0.6477371, -1.5788493)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz100.txt
 description = Wayne County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc223.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc223.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc223.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc223.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc223.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz100.txt
 station = ('kpof', 0.0063663)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc223.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz100.txt
 
@@ -35441,17 +35441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz100.txt
 centroid = (0.6392914, -1.6466902)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz101.txt
 description = McDonald County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz101.txt
 station = ('kvbt', 0.0052036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz101.txt
 
@@ -35459,17 +35459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz101.txt
 centroid = (0.6407086, -1.6376267)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz102.txt
 description = Barry County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz102.txt
 station = ('khfj', 0.0042811)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz102.txt
 
@@ -35477,17 +35477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz102.txt
 centroid = (0.6413544, -1.6311132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz103.txt
 description = Stone County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc209.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc209.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc209.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc209.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc209.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz103.txt
 station = ('kfwb', 0.0011300)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc209.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz103.txt
 
@@ -35495,17 +35495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz103.txt
 centroid = (0.6397452, -1.6238718)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz104.txt
 description = Taney County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc213.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc213.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc213.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc213.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc213.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz104.txt
 station = ('kbbg', 0.0030949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc213.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz104.txt
 
@@ -35513,17 +35513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz104.txt
 centroid = (0.6396510, -1.6134626)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz105.txt
 description = Ozark County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz105.txt
 station = ('kbpk', 0.0049426)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz105.txt
 
@@ -35531,17 +35531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz105.txt
 centroid = (0.6403037, -1.5952885)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz106.txt
 description = Oregon County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz106.txt
 station = ('kuno', 0.0077448)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz106.txt
 
@@ -35549,17 +35549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz106.txt
 centroid = (0.6447473, -1.5875916)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz107.txt
 description = Carter County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz107.txt
 station = ('kpof', 0.0095178)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz107.txt
 
@@ -35567,17 +35567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz107.txt
 centroid = (0.6397120, -1.5858742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz108.txt
 description = Ripley County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz108.txt
 station = ('karg', 0.0090967)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz108.txt
 
@@ -35585,17 +35585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz108.txt
 centroid = (0.6408221, -1.5778911)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz109.txt
 description = Butler County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz109.txt
 station = ('kpof', 0.0015324)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz109.txt
 
@@ -35603,17 +35603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz109.txt
 centroid = (0.6432498, -1.5698259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz110.txt
 description = Stoddard County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc207.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc207.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc207.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc207.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc207.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz110.txt
 station = ('kmaw', 0.0044988)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc207.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz110.txt
 
@@ -35621,17 +35621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz110.txt
 centroid = (0.6466968, -1.5632670)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz111.txt
 description = Scott County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz111.txt
 station = ('kcgi', 0.0031541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz111.txt
 
@@ -35639,17 +35639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz111.txt
 centroid = (0.6427716, -1.5584237)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz112.txt
 description = Mississippi County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz112.txt
 station = ('kcir', 0.0042444)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz112.txt
 
@@ -35657,17 +35657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz112.txt
 centroid = (0.6330641, -1.5723828)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz113.txt
 description = Dunklin County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz113.txt
 station = ('ktkx', 0.0011085)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz113.txt
 
@@ -35675,17 +35675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz113.txt
 centroid = (0.6386893, -1.5647156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz114.txt
 description = New Madrid County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz114.txt
 station = ('kmaw', 0.0047739)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz114.txt
 
@@ -35693,17 +35693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz114.txt
 centroid = (0.6320029, -1.5670578)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mo/moz115.txt
 description = Pemiscot County, MO, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mo/moc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mo/moc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mo/moz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mo/moz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mo/moc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mo/moc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mo/moc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mo/moz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mo/moz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz115.txt
 station = ('ktkx', 0.0035409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz115.txt
 
@@ -35711,17 +35711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz115.txt
 centroid = (0.6086906, -1.5706532)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz001.txt
 description = DeSoto County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz001.txt
 station = ('kmem', 0.0027591)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz001.txt
 
@@ -35729,17 +35729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz001.txt
 centroid = (0.6067166, -1.5621238)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz002.txt
 description = Marshall County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz002.txt
 station = ('kolv', 0.0055507)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz002.txt
 
@@ -35747,17 +35747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz002.txt
 centroid = (0.6076765, -1.5566330)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz003.txt
 description = Benton County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz003.txt
 station = ('km08', 0.0072361)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz003.txt
 
@@ -35765,17 +35765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz003.txt
 centroid = (0.6068231, -1.5517530)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz004.txt
 description = Tippah County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz004.txt
 station = ('kcrx', 0.0050680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz004.txt
 
@@ -35783,17 +35783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz004.txt
 centroid = (0.6087848, -1.5460179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz005.txt
 description = Alcorn County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz005.txt
 station = ('kcrx', 0.0006831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz005.txt
 
@@ -35801,17 +35801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz005.txt
 centroid = (0.6063344, -1.5400663)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz006.txt
 description = Tishomingo County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz006.txt
 station = ('k15m', 0.0011907)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz006.txt
 
@@ -35819,17 +35819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz006.txt
 centroid = (0.6047915, -1.5773500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz007.txt
 description = Tunica County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz007.txt
 station = ('kuta', 0.0006541)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz007.txt
 
@@ -35837,17 +35837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz007.txt
 centroid = (0.6047618, -1.5698329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz008.txt
 description = Tate County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz008.txt
 station = ('kpmu', 0.0050616)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz008.txt
 
@@ -35855,17 +35855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz008.txt
 centroid = (0.6042033, -1.5449672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz009.txt
 description = Prentiss County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz009.txt
 station = ('kcrx', 0.0053147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz009.txt
 
@@ -35873,17 +35873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz009.txt
 centroid = (0.5974122, -1.5813154)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz010.txt
 description = Coahoma County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz010.txt
 station = ('kckm', 0.0017929)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz010.txt
 
@@ -35891,17 +35891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz010.txt
 centroid = (0.5977997, -1.5758421)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz011.txt
 description = Quitman County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz011.txt
 station = ('kckm', 0.0033276)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz011.txt
 
@@ -35909,17 +35909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz011.txt
 centroid = (0.5997632, -1.5699324)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz012.txt
 description = Panola County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz012.txt
 station = ('kpmu', 0.0008342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz012.txt
 
@@ -35927,17 +35927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz012.txt
 centroid = (0.5996393, -1.5618061)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz013.txt
 description = Lafayette County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz013.txt
 station = ('kuox', 0.0008748)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz013.txt
 
@@ -35945,17 +35945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz013.txt
 centroid = (0.6019728, -1.5534094)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz014.txt
 description = Union County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz014.txt
 station = ('ktup', 0.0051894)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz014.txt
 
@@ -35963,17 +35963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz014.txt
 centroid = (0.5973459, -1.5539958)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz015.txt
 description = Pontotoc County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz015.txt
 station = ('ktup', 0.0039718)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz015.txt
 
@@ -35981,17 +35981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz015.txt
 centroid = (0.5984717, -1.5477650)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz016.txt
 description = Lee County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz016.txt
 station = ('ktup', 0.0013085)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz016.txt
 
@@ -35999,17 +35999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz016.txt
 centroid = (0.5982989, -1.5421956)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz017.txt
 description = Itawamba County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz017.txt
 station = ('ktup', 0.0058511)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz017.txt
 
@@ -36017,17 +36017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz017.txt
 centroid = (0.5898427, -1.5861622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz018.txt
 description = Bolivar County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz018.txt
 station = ('kglh', 0.0056499)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz018.txt
 
@@ -36035,17 +36035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz018.txt
 centroid = (0.5864708, -1.5810711)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz019.txt
 description = Sunflower County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz019.txt
 station = ('kglh', 0.0061046)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz019.txt
 
@@ -36053,17 +36053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz019.txt
 centroid = (0.5925480, -1.5738192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz020.txt
 description = Tallahatchie County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz020.txt
 station = ('kckm', 0.0078198)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz020.txt
 
@@ -36071,17 +36071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz020.txt
 centroid = (0.5939041, -1.5656930)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz021.txt
 description = Yalobusha County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz021.txt
 station = ('kpmu', 0.0064327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz021.txt
 
@@ -36089,17 +36089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz021.txt
 centroid = (0.5923019, -1.5592143)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz022.txt
 description = Calhoun County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz022.txt
 station = ('kuox', 0.0083320)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz022.txt
 
@@ -36107,17 +36107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz022.txt
 centroid = (0.5920296, -1.5524337)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz023.txt
 description = Chickasaw County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz023.txt
 station = ('ktup', 0.0065803)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz023.txt
 
@@ -36125,17 +36125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz023.txt
 centroid = (0.5915322, -1.5442743)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz024.txt
 description = Monroe County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz024.txt
 station = ('km40', 0.0003505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz024.txt
 
@@ -36143,17 +36143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz024.txt
 centroid = (0.5855667, -1.5760498)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz025.txt
 description = Leflore County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz025.txt
 station = ('kgwo', 0.0032874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz025.txt
 
@@ -36161,17 +36161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz025.txt
 centroid = (0.5893977, -1.5673406)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz026.txt
 description = Grenada County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz026.txt
 station = ('k5a6', 0.0054247)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz026.txt
 
@@ -36179,17 +36179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz026.txt
 centroid = (0.5837865, -1.5694036)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz027.txt
 description = Carroll County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz027.txt
 station = ('k5a6', 0.0027813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz027.txt
 
@@ -36197,17 +36197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz027.txt
 centroid = (0.5845823, -1.5641012)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz028.txt
 description = Montgomery County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz028.txt
 station = ('k5a6', 0.0017330)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz028.txt
 
@@ -36215,17 +36215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz028.txt
 centroid = (0.5866593, -1.5583137)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz029.txt
 description = Webster County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz029.txt
 station = ('k5a6', 0.0069763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz029.txt
 
@@ -36233,17 +36233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz029.txt
 centroid = (0.5874028, -1.5495295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz030.txt
 description = Clay County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz030.txt
 station = ('kstf', 0.0040058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz030.txt
 
@@ -36251,17 +36251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz030.txt
 centroid = (0.5842123, -1.5436268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz031.txt
 description = Lowndes County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz031.txt
 station = ('kgtr', 0.0020778)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz031.txt
 
@@ -36269,17 +36269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz031.txt
 centroid = (0.5820202, -1.5576784)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz032.txt
 description = Choctaw County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz032.txt
 station = ('klms', 0.0044365)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz032.txt
 
@@ -36287,17 +36287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz032.txt
 centroid = (0.5833763, -1.5512364)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz033.txt
 description = Oktibbeha County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz033.txt
 station = ('kstf', 0.0004690)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz033.txt
 
@@ -36305,17 +36305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz033.txt
 centroid = (0.5809084, -1.5873316)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz034.txt
 description = Washington County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz034.txt
 station = ('kglh', 0.0035251)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz034.txt
 
@@ -36323,17 +36323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz034.txt
 centroid = (0.5782049, -1.5799855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz035.txt
 description = Humphreys County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz035.txt
 station = ('kglh', 0.0090947)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz035.txt
 
@@ -36341,17 +36341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz035.txt
 centroid = (0.5781141, -1.5724038)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz036.txt
 description = Holmes County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz036.txt
 station = ('kgwo', 0.0065724)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz036.txt
 
@@ -36359,17 +36359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz036.txt
 centroid = (0.5774649, -1.5634956)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz037.txt
 description = Attala County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz037.txt
 station = ('k5a6', 0.0069556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz037.txt
 
@@ -36377,17 +36377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz037.txt
 centroid = (0.5775033, -1.5539434)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz038.txt
 description = Winston County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz038.txt
 station = ('klms', 0.0010876)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz038.txt
 
@@ -36395,17 +36395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz038.txt
 centroid = (0.5778803, -1.5458346)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz039.txt
 description = Noxubee County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz039.txt
 station = ('kgtr', 0.0059357)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz039.txt
 
@@ -36413,17 +36413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz039.txt
 centroid = (0.5714452, -1.5880611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz040.txt
 description = Issaquena County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz040.txt
 station = ('ktvr', 0.0068913)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz040.txt
 
@@ -36431,17 +36431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz040.txt
 centroid = (0.5738590, -1.5849893)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz041.txt
 description = Sharkey County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz041.txt
 station = ('ktvr', 0.0098111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz041.txt
 
@@ -36449,17 +36449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz041.txt
 centroid = (0.5721259, -1.5777166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz042.txt
 description = Yazoo County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz042.txt
 station = ('kmbo', 0.0073602)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz042.txt
 
@@ -36467,17 +36467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz042.txt
 centroid = (0.5695830, -1.5713862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz043.txt
 description = Madison County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz043.txt
 station = ('kmbo', 0.0035696)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz043.txt
 
@@ -36485,17 +36485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz043.txt
 centroid = (0.5716564, -1.5624903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz044.txt
 description = Leake County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz044.txt
 station = ('klms', 0.0096270)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz044.txt
 
@@ -36503,17 +36503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz044.txt
 centroid = (0.5716564, -1.5553955)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz045.txt
 description = Neshoba County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz045.txt
 station = ('knmm', 0.0039258)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz045.txt
 
@@ -36521,17 +36521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz045.txt
 centroid = (0.5716756, -1.5470808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz046.txt
 description = Kemper County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz046.txt
 station = ('knjw', 0.0029287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz046.txt
 
@@ -36539,17 +36539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz046.txt
 centroid = (0.5647432, -1.5856683)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz047.txt
 description = Warren County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz047.txt
 station = ('kvks', 0.0024749)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz047.txt
 
@@ -36557,17 +36557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz047.txt
 centroid = (0.5631602, -1.5785229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz048.txt
 description = Hinds County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz048.txt
 station = ('kjvw', 0.0008140)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz048.txt
 
@@ -36575,17 +36575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz048.txt
 centroid = (0.5631148, -1.5698486)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz049.txt
 description = Rankin County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz049.txt
 station = ('kjan', 0.0021734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz049.txt
 
@@ -36593,17 +36593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz049.txt
 centroid = (0.5655984, -1.5627259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz050.txt
 description = Scott County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz050.txt
 station = ('kjan', 0.0081019)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz050.txt
 
@@ -36611,17 +36611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz050.txt
 centroid = (0.5654902, -1.5554165)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz051.txt
 description = Newton County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz051.txt
 station = ('kmei', 0.0055606)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz051.txt
 
@@ -36629,17 +36629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz051.txt
 centroid = (0.5655617, -1.5474543)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz052.txt
 description = Lauderdale County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz052.txt
 station = ('kmei', 0.0017872)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz052.txt
 
@@ -36647,17 +36647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz052.txt
 centroid = (0.5580463, -1.5867102)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz053.txt
 description = Claiborne County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz053.txt
 station = ('kvks', 0.0045426)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz053.txt
 
@@ -36665,17 +36665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz053.txt
 centroid = (0.5562225, -1.5786294)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz054.txt
 description = Copiah County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz054.txt
 station = ('k1r7', 0.0046344)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz054.txt
 
@@ -36683,17 +36683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz054.txt
 centroid = (0.5569904, -1.5693913)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz055.txt
 description = Simpson County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz055.txt
 station = ('kjan', 0.0074697)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz055.txt
 
@@ -36701,17 +36701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz055.txt
 centroid = (0.5588143, -1.5621866)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz056.txt
 description = Smith County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz056.txt
 station = ('klul', 0.0078021)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz056.txt
 
@@ -36719,17 +36719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz056.txt
 centroid = (0.5588387, -1.5554165)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz057.txt
 description = Jasper County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz057.txt
 station = ('klul', 0.0060992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz057.txt
 
@@ -36737,17 +36737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz057.txt
 centroid = (0.5592279, -1.5479220)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz058.txt
 description = Clarke County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz058.txt
 station = ('kmei', 0.0051732)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz058.txt
 
@@ -36755,17 +36755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz058.txt
 centroid = (0.5538663, -1.5888971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz059.txt
 description = Jefferson County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz059.txt
 station = ('khez', 0.0044110)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz059.txt
 
@@ -36773,17 +36773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz059.txt
 centroid = (0.5494855, -1.5944124)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz060.txt
 description = Adams County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz060.txt
 station = ('khez', 0.0024597)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz060.txt
 
@@ -36791,17 +36791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz060.txt
 centroid = (0.5493808, -1.5864659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz061.txt
 description = Franklin County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz061.txt
 station = ('khez', 0.0064585)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz061.txt
 
@@ -36809,17 +36809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz061.txt
 centroid = (0.5503442, -1.5787201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz062.txt
 description = Lincoln County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz062.txt
 station = ('k1r7', 0.0014433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz062.txt
 
@@ -36827,17 +36827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz062.txt
 centroid = (0.5506549, -1.5726638)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz063.txt
 description = Lawrence County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz063.txt
 station = ('k1r7', 0.0045985)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz063.txt
 
@@ -36845,17 +36845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz063.txt
 centroid = (0.5509935, -1.5677071)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz064.txt
 description = Jefferson Davis County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz064.txt
 station = ('kpib', 0.0075037)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz064.txt
 
@@ -36863,17 +36863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz064.txt
 centroid = (0.5521035, -1.5629877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz065.txt
 description = Covington County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz065.txt
 station = ('kpib', 0.0043685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz065.txt
 
@@ -36881,17 +36881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz065.txt
 centroid = (0.5519185, -1.5562892)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz066.txt
 description = Jones County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz066.txt
 station = ('klul', 0.0008741)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz066.txt
 
@@ -36899,17 +36899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz066.txt
 centroid = (0.5522361, -1.5480337)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz067.txt
 description = Wayne County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz067.txt
 station = ('klul', 0.0070993)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz067.txt
 
@@ -36917,17 +36917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz067.txt
 centroid = (0.5438620, -1.5936758)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz068.txt
 description = Wilkinson County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz068.txt
 station = ('k0r4', 0.0075816)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz068.txt
 
@@ -36935,17 +36935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz068.txt
 centroid = (0.5440959, -1.5848375)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz069.txt
 description = Amite County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz069.txt
 station = ('kmcb', 0.0050470)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz069.txt
 
@@ -36953,17 +36953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz069.txt
 centroid = (0.5441046, -1.5778509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz070.txt
 description = Pike County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz070.txt
 station = ('kmcb', 0.0009443)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz070.txt
 
@@ -36971,17 +36971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz070.txt
 centroid = (0.5436439, -1.5726481)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz071.txt
 description = Walthall County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz071.txt
 station = ('kmcb', 0.0054190)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz071.txt
 
@@ -36989,17 +36989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz071.txt
 centroid = (0.5450803, -1.5676966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz072.txt
 description = Marion County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz072.txt
 station = ('kbxa', 0.0073088)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz072.txt
 
@@ -37007,17 +37007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz072.txt
 centroid = (0.5446457, -1.5622215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz073.txt
 description = Lamar County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz073.txt
 station = ('khbg', 0.0040037)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz073.txt
 
@@ -37025,17 +37025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz073.txt
 centroid = (0.5443490, -1.5578442)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz074.txt
 description = Forrest County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz074.txt
 station = ('khbg', 0.0013624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz074.txt
 
@@ -37043,17 +37043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz074.txt
 centroid = (0.5440558, -1.5532086)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz075.txt
 description = Perry County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz075.txt
 station = ('khbg', 0.0041856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz075.txt
 
@@ -37061,17 +37061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz075.txt
 centroid = (0.5447906, -1.5470459)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz076.txt
 description = Greene County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz076.txt
 station = ('khbg', 0.0091606)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz076.txt
 
@@ -37079,17 +37079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz076.txt
 centroid = (0.5370134, -1.5636370)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz077.txt
 description = Pearl River County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz077.txt
 station = ('kbxa', 0.0041961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz077.txt
 
@@ -37097,17 +37097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz077.txt
 centroid = (0.5373869, -1.5553973)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz078.txt
 description = Stone County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz078.txt
 station = ('kgpt', 0.0065363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz078.txt
 
@@ -37115,17 +37115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz078.txt
 centroid = (0.5386540, -1.5471297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz079.txt
 description = George County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz079.txt
 station = ('kmob', 0.0069075)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz079.txt
 
@@ -37133,17 +37133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz079.txt
 centroid = (0.5326239, -1.5616648)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz083.txt
 description = Northern Hancock County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz083.txt
 station = ('khsa', 0.0026273)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz083.txt
 
@@ -37151,17 +37151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz083.txt
 centroid = (0.5334197, -1.5554479)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz084.txt
 description = Northern Harrison County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz084.txt
 station = ('kgpt', 0.0026097)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz084.txt
 
@@ -37169,17 +37169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz084.txt
 centroid = (0.5346781, -1.5473199)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz085.txt
 description = Northern Jackson County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz085.txt
 station = ('kpql', 0.0034569)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz085.txt
 
@@ -37187,17 +37187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz085.txt
 centroid = (0.5308663, -1.5618725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz086.txt
 description = Southern Hancock County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz086.txt
 station = ('khsa', 0.0009909)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz086.txt
 
@@ -37205,17 +37205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz086.txt
 centroid = (0.5306883, -1.5553292)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz087.txt
 description = Southern Harrison County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz087.txt
 station = ('kgpt', 0.0004936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz087.txt
 
@@ -37223,17 +37223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz087.txt
 centroid = (0.5313969, -1.5466305)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ms/msz088.txt
 description = Southern Jackson County, MS, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ms/msc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ms/msc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ms/msz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ms/msz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ms/msc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ms/msc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ms/msc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ms/msz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ms/msz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz088.txt
 station = ('kpql', 0.0012825)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz088.txt
 
@@ -37241,17 +37241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz088.txt
 centroid = (0.8436765, -2.0109073)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz001.txt
 description = Kootenai/Cabinet Region, Sanders County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz001.txt
 station = ('kthm', 0.0133835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz001.txt
 
@@ -37259,17 +37259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz001.txt
 centroid = (0.8425664, -1.9862493)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz002.txt
 description = West Glacier/Bob Marshall Region, Lake County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz002.txt
 station = ('kgpi', 0.0053935)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz002.txt
 
@@ -37277,17 +37277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz002.txt
 centroid = (0.8337996, -1.9948764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz003.txt
 description = Flathead/Mission Valleys, Sanders County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz003.txt
 station = ('kgpi', 0.0092017)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz003.txt
 
@@ -37295,17 +37295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz003.txt
 centroid = (0.8256769, -2.0072386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz004.txt
 description = Lower Clark Fork Region, Sanders County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz004.txt
 station = ('ks34', 0.0031200)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz004.txt
 
@@ -37313,17 +37313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz004.txt
 centroid = (0.8113826, -1.9915586)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz005.txt
 description = Missoula/Bitterroot Valleys, Ravalli County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz005.txt
 station = ('khrf', 0.0041471)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz005.txt
 
@@ -37331,17 +37331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz005.txt
 centroid = (0.8062217, -1.9890942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz006.txt
 description = Bitterroot/Sapphire Mountains, Ravalli County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz006.txt
 station = ('khrf', 0.0021723)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz006.txt
 
@@ -37349,17 +37349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz006.txt
 centroid = (0.8096338, -1.9707996)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz007.txt
 description = Butte/Pintlar Region, Silver Bow County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz007.txt
 station = ('k38s', 0.0018359)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz007.txt
 
@@ -37367,17 +37367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz007.txt
 centroid = (0.8398367, -1.8821264)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz016.txt
 description = Central and Southeast Phillips County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz016.txt
 station = ('km75', 0.0044265)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz016.txt
 
@@ -37385,17 +37385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz016.txt
 centroid = (0.8409363, -1.8619661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz017.txt
 description = Central and Southern Valley County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz017.txt
 station = ('kggw', 0.0009777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz017.txt
 
@@ -37403,17 +37403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz017.txt
 centroid = (0.8514379, -1.8421688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz018.txt
 description = Daniels County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz018.txt
 station = ('k9s2', 0.0013262)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz018.txt
 
@@ -37421,17 +37421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz018.txt
 centroid = (0.8503454, -1.8239494)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz019.txt
 description = Sheridan County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz019.txt
 station = ('kpwd', 0.0012525)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz019.txt
 
@@ -37439,17 +37439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz019.txt
 centroid = (0.8432366, -1.8396556)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz020.txt
 description = Western Roosevelt County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz020.txt
 station = ('kolf', 0.0042737)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz020.txt
 
@@ -37457,17 +37457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz020.txt
 centroid = (0.8223555, -1.8893207)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz021.txt
 description = Petroleum County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz021.txt
 station = ('kmvh', 0.0095208)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz021.txt
 
@@ -37475,17 +37475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz021.txt
 centroid = (0.8251515, -1.8673766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz022.txt
 description = Garfield County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz022.txt
 station = ('kjdn', 0.0010952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz022.txt
 
@@ -37493,17 +37493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz022.txt
 centroid = (0.8315656, -1.8464763)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz023.txt
 description = McCone County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz023.txt
 station = ('k4u6', 0.0048166)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz023.txt
 
@@ -37511,17 +37511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz023.txt
 centroid = (0.8340562, -1.8249407)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz024.txt
 description = Richland County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz024.txt
 station = ('ksdy', 0.0045104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz024.txt
 
@@ -37529,17 +37529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz024.txt
 centroid = (0.8249543, -1.8308399)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz025.txt
 description = Dawson County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz025.txt
 station = ('kgdv', 0.0026045)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz025.txt
 
@@ -37547,17 +37547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz025.txt
 centroid = (0.8178700, -1.8391913)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz026.txt
 description = Prairie County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz026.txt
 station = ('kmls', 0.0096050)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz026.txt
 
@@ -37565,17 +37565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz026.txt
 centroid = (0.8196991, -1.8194883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz027.txt
 description = Wibaux County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz027.txt
 station = ('k20u', 0.0032578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz027.txt
 
@@ -37583,17 +37583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz027.txt
 centroid = (0.8115188, -1.8918968)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz029.txt
 description = Musselshell County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz029.txt
 station = ('krpx', 0.0017683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz029.txt
 
@@ -37601,17 +37601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz029.txt
 centroid = (0.8065428, -1.8722444)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz030.txt
 description = Treasure County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz030.txt
 station = ('k00u', 0.0094176)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz030.txt
 
@@ -37619,17 +37619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz030.txt
 centroid = (0.8095692, -1.8635963)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz031.txt
 description = Northern Rosebud County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz031.txt
 station = ('k1s3', 0.0027036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz031.txt
 
@@ -37637,17 +37637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz031.txt
 centroid = (0.8072619, -1.8425755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz032.txt
 description = Custer County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz032.txt
 station = ('kmls', 0.0049019)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz032.txt
 
@@ -37655,17 +37655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz032.txt
 centroid = (0.8086809, -1.8224274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz033.txt
 description = Fallon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz033.txt
 station = ('kbhk', 0.0020362)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz033.txt
 
@@ -37673,17 +37673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz033.txt
 centroid = (0.7995318, -1.9062067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz034.txt
 description = Northern Stillwater County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz034.txt
 station = ('k6s8', 0.0058637)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz034.txt
 
@@ -37691,17 +37691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz034.txt
 centroid = (0.7922922, -1.8435930)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz036.txt
 description = Powder River County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz036.txt
 station = ('kmls', 0.0183813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz036.txt
 
@@ -37709,17 +37709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz036.txt
 centroid = (0.7944180, -1.8245009)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz037.txt
 description = Carter County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz037.txt
 station = ('k2wx', 0.0121389)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz037.txt
 
@@ -37727,17 +37727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz037.txt
 centroid = (0.8021900, -1.9303568)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz040.txt
 description = Northern Park County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz040.txt
 station = ('klvm', 0.0050098)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz040.txt
 
@@ -37745,17 +37745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz040.txt
 centroid = (0.8085255, -1.9052765)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz042.txt
 description = Golden Valley County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz042.txt
 station = ('kmvh', 0.0093602)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz042.txt
 
@@ -37763,17 +37763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz042.txt
 centroid = (0.8238041, -1.9824148)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz043.txt
 description = Blackfoot Region, Powell County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz043.txt
 station = ('kmso', 0.0078855)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz043.txt
 
@@ -37781,17 +37781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz043.txt
 centroid = (0.7903427, -1.9075122)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz056.txt
 description = Red Lodge Foothills, Carbon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz056.txt
 station = ('kpoy', 0.0095198)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz056.txt
 
@@ -37799,17 +37799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz056.txt
 centroid = (0.7981705, -1.8755221)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz057.txt
 description = Northern Big Horn County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz057.txt
 station = ('k00u', 0.0024580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz057.txt
 
@@ -37817,17 +37817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz057.txt
 centroid = (0.7928786, -1.8587111)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz058.txt
 description = Southern Rosebud County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz058.txt
 station = ('kshr', 0.0129248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz058.txt
 
@@ -37835,17 +37835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz058.txt
 centroid = (0.8513960, -1.8804230)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz059.txt
 description = Northern Phillips County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz059.txt
 station = ('cwvn', 0.0052943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz059.txt
 
@@ -37853,17 +37853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz059.txt
 centroid = (0.8345449, -1.8934553)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz060.txt
 description = Southwest Phillips County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz060.txt
 station = ('km75', 0.0116759)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz060.txt
 
@@ -37871,17 +37871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz060.txt
 centroid = (0.8513524, -1.8610987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz061.txt
 description = Northern Valley County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz061.txt
 station = ('kggw', 0.0098147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz061.txt
 
@@ -37889,17 +37889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz061.txt
 centroid = (0.8424792, -1.8244415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz062.txt
 description = Eastern Roosevelt County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz062.txt
 station = ('ks85', 0.0020728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz062.txt
 
@@ -37907,17 +37907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz062.txt
 centroid = (0.8139936, -1.9142457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz063.txt
 description = Judith Gap, Wheatland County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz063.txt
 station = ('klwt', 0.0076830)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz063.txt
 
@@ -37925,17 +37925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz063.txt
 centroid = (0.7922730, -1.9322505)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz064.txt
 description = Paradise Valley, Park County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz064.txt
 station = ('klvm', 0.0063215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz064.txt
 
@@ -37943,17 +37943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz064.txt
 centroid = (0.7975439, -1.9286080)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz065.txt
 description = Livingston Area, Park County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz065.txt
 station = ('klvm', 0.0008292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz065.txt
 
@@ -37961,17 +37961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz065.txt
 centroid = (0.7954059, -1.9164326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz066.txt
 description = Beartooth Foothills, Sweet Grass County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz066.txt
 station = ('k6s0', 0.0046004)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz066.txt
 
@@ -37979,17 +37979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz066.txt
 centroid = (0.7900006, -1.9231661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz067.txt
 description = Absaroka/Beartooth Mountains, Sweet Grass County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz067.txt
 station = ('klvm', 0.0081795)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz067.txt
 
@@ -37997,17 +37997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz067.txt
 centroid = (0.8039912, -1.9253704)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz068.txt
 description = Crazy Mountains, Wheatland County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz068.txt
 station = ('k6s0', 0.0060870)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz068.txt
 
@@ -38015,17 +38015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz068.txt
 centroid = (0.7901315, -1.8735324)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz138.txt
 description = Southern Big Horn County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz138.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz138.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz138.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz138.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz138.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz138.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz138.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz138.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz138.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz138.txt
 station = ('k00u', 0.0091135)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz138.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz138.txt
 
@@ -38033,17 +38033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz138.txt
 centroid = (0.7877736, -1.8997315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz139.txt
 description = Southeastern Carbon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz139.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz139.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz139.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz139.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz139.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz139.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz139.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz139.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz139.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz139.txt
 station = ('kpoy', 0.0047396)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz139.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz139.txt
 
@@ -38051,17 +38051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz139.txt
 centroid = (0.8013609, -1.9163960)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz141.txt
 description = Northern Sweet Grass County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz141.txt
 station = ('k6s0', 0.0028663)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz141.txt
 
@@ -38069,17 +38069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz141.txt
 centroid = (0.7885869, -1.8874287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz169.txt
 description = Bighorn Canyon, Carbon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz169.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz169.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz169.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz169.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz169.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz169.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz169.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz169.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz169.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz169.txt
 station = ('kpoy', 0.0097403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz169.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz169.txt
 
@@ -38087,17 +38087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz169.txt
 centroid = (0.7933656, -1.9012674)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz170.txt
 description = Northern Carbon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz170.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz170.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz170.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz170.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz170.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz170.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz170.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz170.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz170.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz170.txt
 station = ('k6s8', 0.0047980)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz170.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz170.txt
 
@@ -38105,17 +38105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz170.txt
 centroid = (0.7883356, -1.8892247)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz171.txt
 description = Pryor/Northern Bighorn Mountains, Carbon County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz171.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz171.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz171.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz171.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz171.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz171.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz171.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz171.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz171.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz171.txt
 station = ('kpoy', 0.0085670)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz171.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz171.txt
 
@@ -38123,17 +38123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz171.txt
 centroid = (0.8052530, -1.9203229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz172.txt
 description = Melville Foothills, Wheatland County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz172.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz172.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz172.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz172.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz172.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz172.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz172.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz172.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz172.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz172.txt
 station = ('k6s0', 0.0058040)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz172.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz172.txt
 
@@ -38141,17 +38141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz172.txt
 centroid = (0.8056108, -1.8834459)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz173.txt
 description = Northeastern Yellowstone County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz173.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz173.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz173.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz173.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz173.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz173.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz173.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz173.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz173.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz173.txt
 station = ('k00u', 0.0078459)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz173.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz173.txt
 
@@ -38159,17 +38159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz173.txt
 centroid = (0.8098380, -1.9163820)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz228.txt
 description = Southern Wheatland County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz228.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz228.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz228.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz228.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz228.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz228.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz228.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz228.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz228.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz228.txt
 station = ('k6s0', 0.0105835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz228.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz228.txt
 
@@ -38177,17 +38177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz228.txt
 centroid = (0.7993660, -1.8936491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz235.txt
 description = Southwestern Yellowstone County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz235.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz235.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz235.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz235.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz235.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz235.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz235.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz235.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz235.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz235.txt
 station = ('kbil', 0.0006930)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz235.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz235.txt
 
@@ -38195,17 +38195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz235.txt
 centroid = (0.8488793, -1.9795873)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz301.txt
 description = East Glacier Park Region, Pondera County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz301.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz301.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz301.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz301.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz301.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz301.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz301.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz301.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz301.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz301.txt
 station = ('cwfj', 0.0099506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz301.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz301.txt
 
@@ -38213,17 +38213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz301.txt
 centroid = (0.8472265, -1.9696459)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz302.txt
 description = Northern High Plains, Pondera County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz302.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz302.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz302.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz302.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz302.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz302.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz302.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz302.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz302.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz302.txt
 station = ('kctb', 0.0055092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz302.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz302.txt
 
@@ -38231,17 +38231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz302.txt
 centroid = (0.8490207, -1.9595265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz303.txt
 description = Eastern Glacier, Western Toole, and Central Pondera, Toole County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz303.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz303.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz303.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz303.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz303.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz303.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz303.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz303.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz303.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz303.txt
 station = ('kctb', 0.0015024)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz303.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz303.txt
 
@@ -38249,17 +38249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz303.txt
 centroid = (0.8481567, -1.9422495)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz304.txt
 description = Eastern Toole and Liberty County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz304.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz304.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz304.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz304.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz304.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz304.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz304.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz304.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz304.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz304.txt
 station = ('ksbx', 0.0068622)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz304.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz304.txt
 
@@ -38267,17 +38267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz304.txt
 centroid = (0.8494360, -1.9228781)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz305.txt
 description = Hill County, Hill County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz305.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz305.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz305.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz305.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz305.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz305.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz305.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz305.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz305.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz305.txt
 station = ('khvr', 0.0051270)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz305.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz305.txt
 
@@ -38285,17 +38285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz305.txt
 centroid = (0.8502110, -1.8996600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz306.txt
 description = Northern Blaine County, Blaine County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz306.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz306.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz306.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz306.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz306.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz306.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz306.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz306.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz306.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz306.txt
 station = ('ks71', 0.0051646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz306.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz306.txt
 
@@ -38303,17 +38303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz306.txt
 centroid = (0.8292077, -1.9682654)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz307.txt
 description = Southern Rocky Mountain Front, Teton County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz307.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz307.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz307.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz307.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz307.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz307.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz307.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz307.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz307.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz307.txt
 station = ('kcii', 0.0090252)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz307.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz307.txt
 
@@ -38321,17 +38321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz307.txt
 centroid = (0.8322585, -1.9607116)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz308.txt
 description = Southern High Plains, Teton County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz308.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz308.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz308.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz308.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz308.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz308.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz308.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz308.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz308.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz308.txt
 station = ('kcii', 0.0032188)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz308.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz308.txt
 
@@ -38339,17 +38339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz308.txt
 centroid = (0.8369569, -1.9506603)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz309.txt
 description = Eastern Pondera and Eastern Teton County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz309.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz309.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz309.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz309.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz309.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz309.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz309.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz309.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz309.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz309.txt
 station = ('kcii', 0.0052066)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz309.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz309.txt
 
@@ -38357,17 +38357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz309.txt
 centroid = (0.8355781, -1.9300636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz310.txt
 description = Western and Central Chouteau County, Chouteau County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz310.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz310.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz310.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz310.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz310.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz310.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz310.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz310.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz310.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz310.txt
 station = ('k79s', 0.0007987)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz310.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz310.txt
 
@@ -38375,17 +38375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz310.txt
 centroid = (0.8399345, -1.9079329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz311.txt
 description = Bears Paw Mountains and Southern Blaine, Chouteau County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz311.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz311.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz311.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz311.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz311.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz311.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz311.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz311.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz311.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz311.txt
 station = ('ks71', 0.0081929)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz311.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz311.txt
 
@@ -38393,17 +38393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz311.txt
 centroid = (0.8275182, -1.9440716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz312.txt
 description = Cascade County below 5000ft, Cascade County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz312.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz312.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz312.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz312.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz312.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz312.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz312.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz312.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz312.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz312.txt
 station = ('kgtf', 0.0009325)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz312.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz312.txt
 
@@ -38411,17 +38411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz312.txt
 centroid = (0.8220152, -1.9222969)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz313.txt
 description = Judith Basin County and Judith Gap, Fergus County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz313.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz313.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz313.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz313.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz313.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz313.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz313.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz313.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz313.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz313.txt
 station = ('kfhu', 0.0096202)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz313.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz313.txt
 
@@ -38429,17 +38429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz313.txt
 centroid = (0.8263436, -1.9059275)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz314.txt
 description = Fergus County below 4500ft, Fergus County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz314.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz314.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz314.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz314.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz314.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz314.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz314.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz314.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz314.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz314.txt
 station = ('klwt', 0.0059470)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz314.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz314.txt
 
@@ -38447,17 +38447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz314.txt
 centroid = (0.8169188, -1.9621812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz315.txt
 description = Upper Blackfoot and MacDonald Pass, Lewis and Clark County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz315.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz315.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz315.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz315.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz315.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz315.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz315.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz315.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz315.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz315.txt
 station = ('khln', 0.0065560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz315.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz315.txt
 
@@ -38465,17 +38465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz315.txt
 centroid = (0.8203885, -1.9546501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz316.txt
 description = Gates of the Mountains, Cascade County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz316.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz316.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz316.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz316.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz316.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz316.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz316.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz316.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz316.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz316.txt
 station = ('khln', 0.0070722)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz316.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz316.txt
 
@@ -38483,17 +38483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz316.txt
 centroid = (0.8198545, -1.9333099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz317.txt
 description = Little Belt and Highwood Mountains, Chouteau County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz317.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz317.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz317.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz317.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz317.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz317.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz317.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz317.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz317.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz317.txt
 station = ('kgfa', 0.0103995)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz317.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz317.txt
 
@@ -38501,17 +38501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz317.txt
 centroid = (0.8187078, -1.9072766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz318.txt
 description = Snowy and Judith Mountains, Fergus County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz318.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz318.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz318.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz318.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz318.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz318.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz318.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz318.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz318.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz318.txt
 station = ('klwt', 0.0032016)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz318.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz318.txt
 
@@ -38519,17 +38519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz318.txt
 centroid = (0.8142711, -1.9537076)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz319.txt
 description = Helena Valley, Lewis and Clark County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz319.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz319.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz319.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz319.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz319.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz319.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz319.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz319.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz319.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz319.txt
 station = ('khln', 0.0010033)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz319.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz319.txt
 
@@ -38537,17 +38537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz319.txt
 centroid = (0.8086756, -1.9396245)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz320.txt
 description = Big Belt, Bridger and Castle Mountains, Meagher County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz320.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz320.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz320.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz320.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz320.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz320.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz320.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz320.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz320.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz320.txt
 station = ('k9s5', 0.0095475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz320.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz320.txt
 
@@ -38555,17 +38555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz320.txt
 centroid = (0.8118853, -1.9343624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz321.txt
 description = Meagher County Valleys, Meagher County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz321.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz321.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz321.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz321.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz321.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz321.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz321.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz321.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz321.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz321.txt
 station = ('kbzn', 0.0133839)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz321.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz321.txt
 
@@ -38573,17 +38573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz321.txt
 centroid = (0.8069285, -1.9566328)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz322.txt
 description = Elkhorn and Boulder Mountains, Broadwater County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz322.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz322.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz322.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz322.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz322.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz322.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz322.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz322.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz322.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz322.txt
 station = ('khln', 0.0066134)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz322.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz322.txt
 
@@ -38591,17 +38591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz322.txt
 centroid = (0.8080037, -1.9467839)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz323.txt
 description = Canyon Ferry Area, Broadwater County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz323.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz323.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz323.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz323.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz323.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz323.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz323.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz323.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz323.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz323.txt
 station = ('k9s5', 0.0072868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz323.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz323.txt
 
@@ -38609,17 +38609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz323.txt
 centroid = (0.8002370, -1.9513200)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz324.txt
 description = Missouri Headwaters, Gallatin County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz324.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz324.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz324.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz324.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz324.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz324.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz324.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz324.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz324.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz324.txt
 station = ('k9s5', 0.0028782)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz324.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz324.txt
 
@@ -38627,17 +38627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz324.txt
 centroid = (0.7911019, -1.9491069)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz325.txt
 description = Madison River Valley, Madison County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz325.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz325.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz325.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz325.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz325.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz325.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz325.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz325.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz325.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz325.txt
 station = ('keks', 0.0010139)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz325.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz325.txt
 
@@ -38645,17 +38645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz325.txt
 centroid = (0.7985440, -1.9407363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz326.txt
 description = Gallatin Valley, Gallatin County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz326.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz326.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz326.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz326.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz326.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz326.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz326.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz326.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz326.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz326.txt
 station = ('kbzn', 0.0007683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz326.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz326.txt
 
@@ -38663,17 +38663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz326.txt
 centroid = (0.7939555, -1.9774301)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz327.txt
 description = Northwest Beaverhead County, Beaverhead County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz327.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz327.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz327.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz327.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz327.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz327.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz327.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz327.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz327.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz327.txt
 station = ('ksmn', 0.0096997)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz327.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz327.txt
 
@@ -38681,17 +38681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz327.txt
 centroid = (0.7905713, -1.9645967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz328.txt
 description = Beaverhead and Western Madison below 6000ft, Madison County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz328.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz328.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz328.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz328.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz328.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz328.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz328.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz328.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz328.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz328.txt
 station = ('kdln', 0.0008257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz328.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz328.txt
 
@@ -38699,17 +38699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz328.txt
 centroid = (0.7822967, -1.9662199)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz329.txt
 description = Ruby Mountains and Southern Beaverhead Mountains, Madison County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz329.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz329.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz329.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz329.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz329.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz329.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz329.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz329.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz329.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz329.txt
 station = ('kdln', 0.0075786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz329.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz329.txt
 
@@ -38717,17 +38717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz329.txt
 centroid = (0.7871051, -1.9477909)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/mt/mtz330.txt
 description = Gallatin and Madison County Mountains and Centennial Mountains, Gallatin County, MT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtz330.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtz330.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/mt/mtc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/mt/mtc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/mt/mtz330.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/mt/mtz330.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtz330.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtz330.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtz330.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/mt/mtc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/mt/mtc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/mt/mtc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/mt/mtz330.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/mt/mtz330.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz330.txt
 station = ('keks', 0.0030957)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz330.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz330.txt
 
@@ -38735,17 +38735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz330.txt
 centroid = (0.6359037, -1.4224608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz001.txt
 description = Ashe County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz001.txt
 station = ('kgev', 0.0011844)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz001.txt
 
@@ -38753,17 +38753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz001.txt
 centroid = (0.6368968, -1.4159612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz002.txt
 description = Alleghany County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz002.txt
 station = ('kgev', 0.0041690)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz002.txt
 
@@ -38771,17 +38771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz002.txt
 centroid = (0.6355582, -1.4082748)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz003.txt
 description = Surry County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz003.txt
 station = ('kmwk', 0.0020532)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz003.txt
 
@@ -38789,17 +38789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz003.txt
 centroid = (0.6353313, -1.4004435)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz004.txt
 description = Stokes County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz004.txt
 station = ('kint', 0.0046864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz004.txt
 
@@ -38807,17 +38807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz004.txt
 centroid = (0.6352318, -1.3923382)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz005.txt
 description = Rockingham County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz005.txt
 station = ('ksif', 0.0012849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz005.txt
 
@@ -38825,17 +38825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz005.txt
 centroid = (0.6351847, -1.3846343)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz006.txt
 description = Caswell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz006.txt
 station = ('kdan', 0.0030241)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz006.txt
 
@@ -38843,17 +38843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz006.txt
 centroid = (0.6351271, -1.3783162)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz007.txt
 description = Person County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz007.txt
 station = ('ktdf', 0.0018427)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz007.txt
 
@@ -38861,17 +38861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz007.txt
 centroid = (0.6336243, -1.3727538)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz008.txt
 description = Granville County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz008.txt
 station = ('khnz', 0.0020111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz008.txt
 
@@ -38879,17 +38879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz008.txt
 centroid = (0.6346855, -1.3684830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz009.txt
 description = Vance County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz009.txt
 station = ('khnz', 0.0016996)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz009.txt
 
@@ -38897,17 +38897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz009.txt
 centroid = (0.6352405, -1.3632226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz010.txt
 description = Warren County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz010.txt
 station = ('kavc', 0.0051499)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz010.txt
 
@@ -38915,17 +38915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz010.txt
 centroid = (0.6328128, -1.3552813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz011.txt
 description = Halifax County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz011.txt
 station = ('kixa', 0.0012835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz011.txt
 
@@ -38933,17 +38933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz011.txt
 centroid = (0.6356088, -1.3508272)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz012.txt
 description = Northampton County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz012.txt
 station = ('kasj', 0.0038053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz012.txt
 
@@ -38951,17 +38951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz012.txt
 centroid = (0.6345843, -1.3436208)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz013.txt
 description = Hertford County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz013.txt
 station = ('kasj', 0.0028405)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz013.txt
 
@@ -38969,17 +38969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz013.txt
 centroid = (0.6360748, -1.3386972)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz014.txt
 description = Gates County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz014.txt
 station = ('ksfq', 0.0043800)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz014.txt
 
@@ -38987,17 +38987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz014.txt
 centroid = (0.6335091, -1.3314541)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz015.txt
 description = Pasquotank County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz015.txt
 station = ('kecg', 0.0018807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz015.txt
 
@@ -39005,17 +39005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz015.txt
 centroid = (0.6351288, -1.3301172)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz016.txt
 description = Camden County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz016.txt
 station = ('kecg', 0.0025220)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz016.txt
 
@@ -39023,17 +39023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz016.txt
 centroid = (0.6353208, -1.3270436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz017.txt
 description = Western Currituck County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz017.txt
 station = ('konx', 0.0002545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz017.txt
 
@@ -39041,17 +39041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz017.txt
 centroid = (0.6323555, -1.4258799)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz018.txt
 description = Watauga County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz018.txt
 station = ('ktnb', 0.0008571)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz018.txt
 
@@ -39059,17 +39059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz018.txt
 centroid = (0.6319226, -1.4165755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz019.txt
 description = Wilkes County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz019.txt
 station = ('kukf', 0.0011469)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz019.txt
 
@@ -39077,17 +39077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz019.txt
 centroid = (0.6311198, -1.4078751)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz020.txt
 description = Yadkin County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz020.txt
 station = ('kmwk', 0.0054558)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz020.txt
 
@@ -39095,17 +39095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz020.txt
 centroid = (0.6305944, -1.4007367)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz021.txt
 description = Forsyth County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz021.txt
 station = ('kint', 0.0003278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz021.txt
 
@@ -39113,17 +39113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz021.txt
 centroid = (0.6297043, -1.3925808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz022.txt
 description = Guilford County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz022.txt
 station = ('kgso', 0.0022990)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz022.txt
 
@@ -39131,17 +39131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz022.txt
 centroid = (0.6290865, -1.3857827)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz023.txt
 description = Alamance County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz023.txt
 station = ('kbuy', 0.0009660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz023.txt
 
@@ -39149,17 +39149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz023.txt
 centroid = (0.6293902, -1.3809132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz024.txt
 description = Orange County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz024.txt
 station = ('ktdf', 0.0043496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz024.txt
 
@@ -39167,17 +39167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz024.txt
 centroid = (0.6289451, -1.3766529)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz025.txt
 description = Durham County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz025.txt
 station = ('krdu', 0.0028335)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz025.txt
 
@@ -39185,17 +39185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz025.txt
 centroid = (0.6297619, -1.3663432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz026.txt
 description = Franklin County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz026.txt
 station = ('klhz', 0.0012121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz026.txt
 
@@ -39203,17 +39203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz026.txt
 centroid = (0.6277461, -1.3611212)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz027.txt
 description = Nash County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz027.txt
 station = ('krwi', 0.0023831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz027.txt
 
@@ -39221,17 +39221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz027.txt
 centroid = (0.6267983, -1.3543249)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz028.txt
 description = Edgecombe County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz028.txt
 station = ('ketc', 0.0008293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz028.txt
 
@@ -39239,17 +39239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz028.txt
 centroid = (0.6255539, -1.3457728)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz029.txt
 description = Martin County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz029.txt
 station = ('kmcz', 0.0010682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz029.txt
 
@@ -39257,17 +39257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz029.txt
 centroid = (0.6294739, -1.3435388)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz030.txt
 description = Bertie County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz030.txt
 station = ('kmcz', 0.0045373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz030.txt
 
@@ -39275,17 +39275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz030.txt
 centroid = (0.6309487, -1.3370618)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz031.txt
 description = Chowan County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz031.txt
 station = ('kede', 0.0022211)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz031.txt
 
@@ -39293,17 +39293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz031.txt
 centroid = (0.6319296, -1.3341628)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz032.txt
 description = Perquimans County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz032.txt
 station = ('kede', 0.0035910)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz032.txt
 
@@ -39311,17 +39311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz032.txt
 centroid = (0.6296555, -1.4298156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz033.txt
 description = Avery County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz033.txt
 station = ('ktnb', 0.0044023)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz033.txt
 
@@ -39329,17 +39329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz033.txt
 centroid = (0.6269415, -1.4168094)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz035.txt
 description = Alexander County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz035.txt
 station = ('ksvh', 0.0041390)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz035.txt
 
@@ -39347,17 +39347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz035.txt
 centroid = (0.6249535, -1.4115106)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz036.txt
 description = Iredell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz036.txt
 station = ('ksvh', 0.0013851)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz036.txt
 
@@ -39365,17 +39365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz036.txt
 centroid = (0.6270828, -1.4057685)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz037.txt
 description = Davie County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz037.txt
 station = ('kexx', 0.0042749)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz037.txt
 
@@ -39383,17 +39383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz037.txt
 centroid = (0.6247092, -1.3999757)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz038.txt
 description = Davidson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz038.txt
 station = ('kexx', 0.0013082)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz038.txt
 
@@ -39401,17 +39401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz038.txt
 centroid = (0.6232623, -1.3928775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz039.txt
 description = Randolph County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz039.txt
 station = ('khbi', 0.0016004)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz039.txt
 
@@ -39419,17 +39419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz039.txt
 centroid = (0.6231314, -1.3832659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz040.txt
 description = Chatham County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz040.txt
 station = ('ktta', 0.0030289)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz040.txt
 
@@ -39437,17 +39437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz040.txt
 centroid = (0.6246551, -1.3727084)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz041.txt
 description = Wake County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz041.txt
 station = ('krdu', 0.0025268)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz041.txt
 
@@ -39455,17 +39455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz041.txt
 centroid = (0.6198991, -1.3677395)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz042.txt
 description = Johnston County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz042.txt
 station = ('kjnx', 0.0005351)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz042.txt
 
@@ -39473,17 +39473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz042.txt
 centroid = (0.6231663, -1.3599344)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz043.txt
 description = Wilson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz043.txt
 station = ('krwi', 0.0025477)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz043.txt
 
@@ -39491,17 +39491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz043.txt
 centroid = (0.6212238, -1.3504450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz044.txt
 description = Pitt County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz044.txt
 station = ('kpgv', 0.0007818)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz044.txt
 
@@ -39509,17 +39509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz044.txt
 centroid = (0.6252136, -1.3365138)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz045.txt
 description = Washington County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz045.txt
 station = ('kede', 0.0035922)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz045.txt
 
@@ -39527,17 +39527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz045.txt
 centroid = (0.6251089, -1.3301468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz046.txt
 description = Tyrrell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz046.txt
 station = ('k2dp', 0.0051295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz046.txt
 
@@ -39545,17 +39545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz046.txt
 centroid = (0.6243968, -1.3239666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz047.txt
 description = Mainland Dare County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz047.txt
 station = ('k2dp', 0.0019885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz047.txt
 
@@ -39563,17 +39563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz047.txt
 centroid = (0.6258419, -1.4434868)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz048.txt
 description = Madison County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz048.txt
 station = ('kgcy', 0.0060776)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz048.txt
 
@@ -39581,17 +39581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz048.txt
 centroid = (0.6265540, -1.4365386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz049.txt
 description = Yancey County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz049.txt
 station = ('kavl', 0.0087334)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz049.txt
 
@@ -39599,17 +39599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz049.txt
 centroid = (0.6285507, -1.4340219)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz050.txt
 description = Mitchell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz050.txt
 station = ('kmrn', 0.0084983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz050.txt
 
@@ -39617,17 +39617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz050.txt
 centroid = (0.6193598, -1.4572225)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz051.txt
 description = Swain County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz051.txt
 station = ('k1a5', 0.0048357)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz051.txt
 
@@ -39635,17 +39635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz051.txt
 centroid = (0.6205710, -1.4483126)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz052.txt
 description = Haywood County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz052.txt
 station = ('k24a', 0.0052764)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz052.txt
 
@@ -39653,17 +39653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz052.txt
 centroid = (0.6215327, -1.4404237)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz053.txt
 description = Buncombe County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz053.txt
 station = ('kavl', 0.0031047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz053.txt
 
@@ -39671,17 +39671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz053.txt
 centroid = (0.6224298, -1.4174587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz056.txt
 description = Catawba County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz056.txt
 station = ('khky', 0.0028388)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz056.txt
 
@@ -39689,17 +39689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz056.txt
 centroid = (0.6220284, -1.4054211)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz057.txt
 description = Rowan County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz057.txt
 station = ('kruq', 0.0002143)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz057.txt
 
@@ -39707,17 +39707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz057.txt
 centroid = (0.6169774, -1.4631706)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz058.txt
 description = Graham County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz058.txt
 station = ('krhp', 0.0027425)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz058.txt
 
@@ -39725,17 +39725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz058.txt
 centroid = (0.6172147, -1.4517265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz059.txt
 description = Northern Jackson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz059.txt
 station = ('k24a', 0.0009299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz059.txt
 
@@ -39743,17 +39743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz059.txt
 centroid = (0.6132022, -1.4671849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz060.txt
 description = Cherokee County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz060.txt
 station = ('krhp', 0.0030449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz060.txt
 
@@ -39761,17 +39761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz060.txt
 centroid = (0.6118636, -1.4617167)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz061.txt
 description = Clay County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz061.txt
 station = ('krhp', 0.0028992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz061.txt
 
@@ -39779,17 +39779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz061.txt
 centroid = (0.6134902, -1.4559903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz062.txt
 description = Macon County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz062.txt
 station = ('k1a5', 0.0011592)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz062.txt
 
@@ -39797,17 +39797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz062.txt
 centroid = (0.6136822, -1.4500178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz063.txt
 description = Southern Jackson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz063.txt
 station = ('k24a', 0.0032936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz063.txt
 
@@ -39815,17 +39815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz063.txt
 centroid = (0.6143943, -1.4451030)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz064.txt
 description = Transylvania County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz064.txt
 station = ('kavl', 0.0055238)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz064.txt
 
@@ -39833,17 +39833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz064.txt
 centroid = (0.6167330, -1.4395458)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz065.txt
 description = Henderson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz065.txt
 station = ('kavl', 0.0018580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz065.txt
 
@@ -39851,17 +39851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz065.txt
 centroid = (0.6166946, -1.4234103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz068.txt
 description = Cleveland County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz068.txt
 station = ('keho', 0.0015978)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz068.txt
 
@@ -39869,17 +39869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz068.txt
 centroid = (0.6193510, -1.4176245)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz069.txt
 description = Lincoln County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz069.txt
 station = ('kipj', 0.0008901)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz069.txt
 
@@ -39887,17 +39887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz069.txt
 centroid = (0.6160052, -1.4168600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz070.txt
 description = Gaston County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz070.txt
 station = ('kakh', 0.0017042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz070.txt
 
@@ -39905,17 +39905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz070.txt
 centroid = (0.6151727, -1.4107985)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz071.txt
 description = Mecklenburg County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz071.txt
 station = ('kclt', 0.0017517)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz071.txt
 
@@ -39923,17 +39923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz071.txt
 centroid = (0.6176162, -1.4058959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz072.txt
 description = Cabarrus County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz072.txt
 station = ('kjqf', 0.0022458)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz072.txt
 
@@ -39941,17 +39941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz072.txt
 centroid = (0.6163107, -1.4006389)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz073.txt
 description = Stanly County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz073.txt
 station = ('kvuj', 0.0023146)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz073.txt
 
@@ -39959,17 +39959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz073.txt
 centroid = (0.6166667, -1.3946123)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz074.txt
 description = Montgomery County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz074.txt
 station = ('kvuj', 0.0037898)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz074.txt
 
@@ -39977,17 +39977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz074.txt
 centroid = (0.6162880, -1.3872104)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz075.txt
 description = Moore County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz075.txt
 station = ('ksop', 0.0017791)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz075.txt
 
@@ -39995,17 +39995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz075.txt
 centroid = (0.6191556, -1.3818051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz076.txt
 description = Lee County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz076.txt
 station = ('ktta', 0.0021248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz076.txt
 
@@ -40013,17 +40013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz076.txt
 centroid = (0.6173003, -1.3765290)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz077.txt
 description = Harnett County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz077.txt
 station = ('khrj', 0.0019388)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz077.txt
 
@@ -40031,17 +40031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz077.txt
 centroid = (0.6172147, -1.3614266)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz078.txt
 description = Wayne County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz078.txt
 station = ('kgsb', 0.0007518)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz078.txt
 
@@ -40049,17 +40049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz078.txt
 centroid = (0.6193336, -1.3556950)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz079.txt
 description = Greene County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz079.txt
 station = ('kiso', 0.0027800)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz079.txt
 
@@ -40067,17 +40067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz079.txt
 centroid = (0.6194994, -1.3415142)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz080.txt
 description = Beaufort County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz080.txt
 station = ('kocw', 0.0029629)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz080.txt
 
@@ -40085,17 +40085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz080.txt
 centroid = (0.6202464, -1.3308694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz081.txt
 description = Mainland Hyde County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz081.txt
 station = ('k7w6', 0.0042539)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz081.txt
 
@@ -40103,17 +40103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz081.txt
 centroid = (0.6106628, -1.4055259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz082.txt
 description = Union County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz082.txt
 station = ('keqy', 0.0013243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz082.txt
 
@@ -40121,17 +40121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz082.txt
 centroid = (0.6104080, -1.3980559)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz083.txt
 description = Anson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz083.txt
 station = ('kafp', 0.0008953)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz083.txt
 
@@ -40139,17 +40139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz083.txt
 centroid = (0.6109682, -1.3918652)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz084.txt
 description = Richmond County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz084.txt
 station = ('krcz', 0.0020070)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz084.txt
 
@@ -40157,17 +40157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz084.txt
 centroid = (0.6080919, -1.3871964)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz085.txt
 description = Scotland County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz085.txt
 station = ('kmeb', 0.0019176)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz085.txt
 
@@ -40175,17 +40175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz085.txt
 centroid = (0.6111689, -1.3829483)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz086.txt
 description = Hoke County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz086.txt
 station = ('khff', 0.0037678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz086.txt
 
@@ -40193,17 +40193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz086.txt
 centroid = (0.6045838, -1.3806165)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz087.txt
 description = Robeson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz087.txt
 station = ('klbt', 0.0008773)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz087.txt
 
@@ -40211,17 +40211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz087.txt
 centroid = (0.6117117, -1.3757959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz088.txt
 description = Cumberland County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz088.txt
 station = ('kfay', 0.0013911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz088.txt
 
@@ -40229,17 +40229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz088.txt
 centroid = (0.6107169, -1.3678355)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz089.txt
 description = Sampson County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz089.txt
 station = ('kctz', 0.0002933)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz089.txt
 
@@ -40247,17 +40247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz089.txt
 centroid = (0.6097570, -1.3601927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz090.txt
 description = Duplin County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz090.txt
 station = ('kdpl', 0.0013065)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz090.txt
 
@@ -40265,17 +40265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz090.txt
 centroid = (0.6150418, -1.3551016)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz091.txt
 description = Lenoir County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz091.txt
 station = ('kiso', 0.0016792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz091.txt
 
@@ -40283,17 +40283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz091.txt
 centroid = (0.6112527, -1.3501082)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz092.txt
 description = Jones County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz092.txt
 station = ('kewn', 0.0044754)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz092.txt
 
@@ -40301,17 +40301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz092.txt
 centroid = (0.6133209, -1.3395175)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz094.txt
 description = Pamlico County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz094.txt
 station = ('kewn', 0.0044498)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz094.txt
 
@@ -40319,17 +40319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz094.txt
 centroid = (0.6041335, -1.3711865)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz096.txt
 description = Bladen County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz096.txt
 station = ('keyf', 0.0003820)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz096.txt
 
@@ -40337,17 +40337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz096.txt
 centroid = (0.5980458, -1.3727887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz099.txt
 description = Columbus County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz099.txt
 station = ('kcpc', 0.0008747)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz099.txt
 
@@ -40355,17 +40355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz099.txt
 centroid = (0.6353016, -1.3237275)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz102.txt
 description = Eastern Currituck County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz102.txt
 station = ('konx', 0.0024179)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz102.txt
 
@@ -40373,17 +40373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz102.txt
 centroid = (0.6027111, -1.3599745)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz105.txt
 description = Inland Pender County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz105.txt
 station = ('kacz', 0.0034425)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz105.txt
 
@@ -40391,17 +40391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz105.txt
 centroid = (0.6000686, -1.3551871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz106.txt
 description = Coastal Pender County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz106.txt
 station = ('kilm', 0.0041667)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz106.txt
 
@@ -40409,17 +40409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz106.txt
 centroid = (0.5983285, -1.3595818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz107.txt
 description = Inland New Hanover County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz107.txt
 station = ('kilm', 0.0002635)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz107.txt
 
@@ -40427,17 +40427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz107.txt
 centroid = (0.5958065, -1.3589343)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz108.txt
 description = Coastal New Hanover County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz108.txt
 station = ('kilm', 0.0023280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz108.txt
 
@@ -40445,17 +40445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz108.txt
 centroid = (0.5952725, -1.3657062)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz109.txt
 description = Inland Brunswick County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz109.txt
 station = ('ksut', 0.0039951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz109.txt
 
@@ -40463,17 +40463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz109.txt
 centroid = (0.5925899, -1.3608542)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz110.txt
 description = Coastal Brunswick County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz110.txt
 station = ('ksut', 0.0015551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz110.txt
 
@@ -40481,17 +40481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz110.txt
 centroid = (0.6152425, -1.3472039)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz193.txt
 description = Northern Craven County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz193.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz193.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz193.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz193.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz193.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz193.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz193.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz193.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz193.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz193.txt
 station = ('kewn', 0.0037859)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz193.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz193.txt
 
@@ -40499,17 +40499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz193.txt
 centroid = (0.6100641, -1.3433764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz194.txt
 description = Southern Craven County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz194.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz194.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz194.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz194.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz194.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz194.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz194.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz194.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz194.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz194.txt
 station = ('knkt', 0.0016084)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz194.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz194.txt
 
@@ -40517,17 +40517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz194.txt
 centroid = (0.6068021, -1.3422769)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz195.txt
 description = West Carteret County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz195.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz195.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz195.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz195.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz195.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz195.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz195.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz195.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz195.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz195.txt
 station = ('knjm', 0.0021609)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz195.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz195.txt
 
@@ -40535,17 +40535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz195.txt
 centroid = (0.6086522, -1.3353881)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz196.txt
 description = East Carteret County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz196.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz196.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz196.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz196.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz196.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz196.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz196.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz196.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz196.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz196.txt
 station = ('knbt', 0.0025870)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz196.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz196.txt
 
@@ -40553,17 +40553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz196.txt
 centroid = (0.6069819, -1.3521694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz198.txt
 description = Inland Onslow County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz198.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz198.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz198.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz198.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz198.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz198.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz198.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz198.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz198.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz198.txt
 station = ('knca', 0.0013943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz198.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz198.txt
 
@@ -40571,17 +40571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz198.txt
 centroid = (0.6041649, -1.3493978)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz199.txt
 description = Coastal Onslow County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz199.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz199.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz199.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz199.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz199.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz199.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz199.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz199.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz199.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz199.txt
 station = ('knca', 0.0024314)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz199.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz199.txt
 
@@ -40589,17 +40589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz199.txt
 centroid = (0.6276605, -1.3206173)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz203.txt
 description = Northern Outer Banks, Dare County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz203.txt
 station = ('kmqi', 0.0009316)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz203.txt
 
@@ -40607,17 +40607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz203.txt
 centroid = (0.6131045, -1.3249597)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz204.txt
 description = Ocracoke Island, Hyde County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz204.txt
 station = ('khse', 0.0046286)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz204.txt
 
@@ -40625,17 +40625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz204.txt
 centroid = (0.6177506, -1.3184444)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz205.txt
 description = Hatteras Island, Dare County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz205.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz205.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz205.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz205.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz205.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz205.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz205.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz205.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz205.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz205.txt
 station = ('khse', 0.0030107)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz205.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz205.txt
 
@@ -40643,17 +40643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz205.txt
 centroid = (0.6288439, -1.4249008)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz501.txt
 description = Caldwell Mountains, Caldwell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz501.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz501.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz501.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz501.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz501.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz501.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz501.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz501.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz501.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz501.txt
 station = ('ktnb', 0.0029682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz501.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz501.txt
 
@@ -40661,17 +40661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz501.txt
 centroid = (0.6265941, -1.4221501)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz502.txt
 description = Greater Caldwell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz502.txt
 station = ('kmrn', 0.0022803)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz502.txt
 
@@ -40679,17 +40679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz502.txt
 centroid = (0.6263742, -1.4287614)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz503.txt
 description = Burke Mountains, Burke County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz503.txt
 station = ('kmrn', 0.0037416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz503.txt
 
@@ -40697,17 +40697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz503.txt
 centroid = (0.6233409, -1.4253266)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz504.txt
 description = Greater Burke County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz504.txt
 station = ('kmrn', 0.0020133)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz504.txt
 
@@ -40715,17 +40715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz504.txt
 centroid = (0.6232257, -1.4330096)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz505.txt
 description = McDowell Mountains, McDowell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz505.txt
 station = ('kfqd', 0.0054508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz505.txt
 
@@ -40733,17 +40733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz505.txt
 centroid = (0.6219079, -1.4302240)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz506.txt
 description = Eastern McDowell County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz506.txt
 station = ('kfqd', 0.0035702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz506.txt
 
@@ -40751,17 +40751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz506.txt
 centroid = (0.6189810, -1.4345385)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz507.txt
 description = Rutherford Mountains, Rutherford County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz507.txt
 station = ('kfqd', 0.0037238)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz507.txt
 
@@ -40769,17 +40769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz507.txt
 centroid = (0.6177628, -1.4292362)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz508.txt
 description = Greater Rutherford County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz508.txt
 station = ('kfqd', 0.0008711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz508.txt
 
@@ -40787,17 +40787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz508.txt
 centroid = (0.6158499, -1.4362838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz509.txt
 description = Polk Mountains, Polk County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz509.txt
 station = ('kavl', 0.0042838)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz509.txt
 
@@ -40805,17 +40805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz509.txt
 centroid = (0.6157103, -1.4335367)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nc/ncz510.txt
 description = Eastern Polk County, NC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nc/ncc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nc/ncc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nc/ncz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nc/ncz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nc/ncc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nc/ncc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nc/ncc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nc/ncz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nc/ncz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz510.txt
 station = ('kfqd', 0.0038827)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz510.txt
 
@@ -40823,17 +40823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz510.txt
 centroid = (0.8519807, -1.8061941)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz001.txt
 description = Divide County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz001.txt
 station = ('kd50', 0.0029496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz001.txt
 
@@ -40841,17 +40841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz001.txt
 centroid = (0.8515619, -1.7892819)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz002.txt
 description = Burke County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz002.txt
 station = ('kd60', 0.0083981)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz002.txt
 
@@ -40859,17 +40859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz002.txt
 centroid = (0.8503104, -1.7742686)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz003.txt
 description = Renville County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz003.txt
 station = ('kmib', 0.0063673)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz003.txt
 
@@ -40877,17 +40877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz003.txt
 centroid = (0.8515828, -1.7598766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz004.txt
 description = Bottineau County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz004.txt
 station = ('kd09', 0.0048336)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz004.txt
 
@@ -40895,17 +40895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz004.txt
 centroid = (0.8512390, -1.7425559)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz005.txt
 description = Rolette County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz005.txt
 station = ('k06d', 0.0031983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz005.txt
 
@@ -40913,17 +40913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz005.txt
 centroid = (0.8497240, -1.7321677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz006.txt
 description = Towner County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz006.txt
 station = ('k9d7', 0.0035901)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz006.txt
 
@@ -40931,17 +40931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz006.txt
 centroid = (0.8512355, -1.7185384)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz007.txt
 description = Cavalier County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz007.txt
 station = ('kd55', 0.0008867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz007.txt
 
@@ -40949,17 +40949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz007.txt
 centroid = (0.8511482, -1.7025984)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz008.txt
 description = Pembina County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz008.txt
 station = ('k2c8', 0.0009664)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz008.txt
 
@@ -40967,17 +40967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz008.txt
 centroid = (0.8437567, -1.8060702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz009.txt
 description = Williams County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz009.txt
 station = ('kxwa', 0.0034557)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz009.txt
 
@@ -40985,17 +40985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz009.txt
 centroid = (0.8412714, -1.7864422)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz010.txt
 description = Mountrail County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz010.txt
 station = ('k08d', 0.0018347)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz010.txt
 
@@ -41003,17 +41003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz010.txt
 centroid = (0.8416292, -1.7722387)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz011.txt
 description = Ward County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz011.txt
 station = ('kmib', 0.0040648)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz011.txt
 
@@ -41021,17 +41021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz011.txt
 centroid = (0.8418526, -1.7564348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz012.txt
 description = McHenry County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz012.txt
 station = ('krug', 0.0076059)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz012.txt
 
@@ -41039,17 +41039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz012.txt
 centroid = (0.8421144, -1.7448371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz013.txt
 description = Pierce County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz013.txt
 station = ('krug', 0.0025349)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz013.txt
 
@@ -41057,17 +41057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz013.txt
 centroid = (0.8389693, -1.7342621)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz014.txt
 description = Benson County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz014.txt
 station = ('k9d7', 0.0073225)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz014.txt
 
@@ -41075,17 +41075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz014.txt
 centroid = (0.8424530, -1.7229908)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz015.txt
 description = Ramsey County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz015.txt
 station = ('kdvl', 0.0035070)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz015.txt
 
@@ -41093,17 +41093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz015.txt
 centroid = (0.8441861, -1.7016925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz016.txt
 description = Eastern Walsh County, Walsh County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz016.txt
 station = ('kgaf', 0.0016244)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz016.txt
 
@@ -41111,17 +41111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz016.txt
 centroid = (0.8332237, -1.8045884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz017.txt
 description = McKenzie County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz017.txt
 station = ('ks25', 0.0019156)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz017.txt
 
@@ -41129,17 +41129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz017.txt
 centroid = (0.8265321, -1.7910255)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz018.txt
 description = Dunn County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz018.txt
 station = ('k9y1', 0.0019122)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz018.txt
 
@@ -41147,17 +41147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz018.txt
 centroid = (0.8257013, -1.7772950)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz019.txt
 description = Mercer County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz019.txt
 station = ('khze', 0.0029858)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz019.txt
 
@@ -41165,17 +41165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz019.txt
 centroid = (0.8223171, -1.7687219)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz020.txt
 description = Oliver County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz020.txt
 station = ('khze', 0.0041752)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz020.txt
 
@@ -41183,17 +41183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz020.txt
 centroid = (0.8308989, -1.7683990)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz021.txt
 description = McLean County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz021.txt
 station = ('kn60', 0.0015114)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz021.txt
 
@@ -41201,17 +41201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz021.txt
 centroid = (0.8303474, -1.7513611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz022.txt
 description = Sheridan County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz022.txt
 station = ('k5h4', 0.0061506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz022.txt
 
@@ -41219,17 +41219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz022.txt
 centroid = (0.8305603, -1.7394126)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz023.txt
 description = Wells County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz023.txt
 station = ('k5h4', 0.0047674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz023.txt
 
@@ -41237,17 +41237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz023.txt
 centroid = (0.8328292, -1.7261586)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz024.txt
 description = Eddy County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz024.txt
 station = ('k46d', 0.0055027)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz024.txt
 
@@ -41255,17 +41255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz024.txt
 centroid = (0.8282826, -1.7258357)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz025.txt
 description = Foster County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz025.txt
 station = ('k46d', 0.0031680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz025.txt
 
@@ -41273,17 +41273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz025.txt
 centroid = (0.8363897, -1.7137754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz026.txt
 description = Nelson County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz026.txt
 station = ('ks32', 0.0087649)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz026.txt
 
@@ -41291,17 +41291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz026.txt
 centroid = (0.8363949, -1.7009455)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz027.txt
 description = Grand Forks County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz027.txt
 station = ('krdr', 0.0010269)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz027.txt
 
@@ -41309,17 +41309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz027.txt
 centroid = (0.8282844, -1.7145608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz028.txt
 description = Griggs County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz028.txt
 station = ('ks32', 0.0016620)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz028.txt
 
@@ -41327,17 +41327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz028.txt
 centroid = (0.8282669, -1.7056178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz029.txt
 description = Steele County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz029.txt
 station = ('ks32', 0.0045369)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz029.txt
 
@@ -41345,17 +41345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz029.txt
 centroid = (0.8282320, -1.6957881)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz030.txt
 description = Traill County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz030.txt
 station = ('kgfk', 0.0086571)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz030.txt
 
@@ -41363,17 +41363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz030.txt
 centroid = (0.8192610, -1.8124668)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz031.txt
 description = Golden Valley County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz031.txt
 station = ('k20u', 0.0016328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz031.txt
 
@@ -41381,17 +41381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz031.txt
 centroid = (0.8207149, -1.8042585)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz032.txt
 description = Billings County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz032.txt
 station = ('k9y1', 0.0096471)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz032.txt
 
@@ -41399,17 +41399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz032.txt
 centroid = (0.8170008, -1.7916677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz033.txt
 description = Stark County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz033.txt
 station = ('kdik', 0.0017423)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz033.txt
 
@@ -41417,17 +41417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz033.txt
 centroid = (0.8153498, -1.7676887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz034.txt
 description = Morton County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz034.txt
 station = ('kbis', 0.0064588)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz034.txt
 
@@ -41435,17 +41435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz034.txt
 centroid = (0.8199103, -1.7535114)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz035.txt
 description = Burleigh County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz035.txt
 station = ('kbis', 0.0047672)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz035.txt
 
@@ -41453,17 +41453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz035.txt
 centroid = (0.8199592, -1.7414913)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz036.txt
 description = Kidder County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz036.txt
 station = ('k46d', 0.0110951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz036.txt
 
@@ -41471,17 +41471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz036.txt
 centroid = (0.8199417, -1.7271569)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz037.txt
 description = Stutsman County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz037.txt
 station = ('kjms', 0.0035710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz037.txt
 
@@ -41489,17 +41489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz037.txt
 centroid = (0.8191895, -1.7116723)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz038.txt
 description = Barnes County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz038.txt
 station = ('kbac', 0.0006440)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz038.txt
 
@@ -41507,17 +41507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz038.txt
 centroid = (0.8191354, -1.6972995)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz039.txt
 description = Cass County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz039.txt
 station = ('kfar', 0.0051418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz039.txt
 
@@ -41525,17 +41525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz039.txt
 centroid = (0.8106566, -1.8057159)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz040.txt
 description = Slope County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz040.txt
 station = ('kbww', 0.0052774)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz040.txt
 
@@ -41543,17 +41543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz040.txt
 centroid = (0.8104018, -1.7882713)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz041.txt
 description = Hettinger County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz041.txt
 station = ('kdik', 0.0075956)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz041.txt
 
@@ -41561,17 +41561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz041.txt
 centroid = (0.8091050, -1.7739474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz042.txt
 description = Grant County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz042.txt
 station = ('kd57', 0.0083611)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz042.txt
 
@@ -41579,17 +41579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz042.txt
 centroid = (0.8048167, -1.8067771)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz043.txt
 description = Bowman County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz043.txt
 station = ('kbww', 0.0028158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz043.txt
 
@@ -41597,17 +41597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz043.txt
 centroid = (0.8045427, -1.7894599)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz044.txt
 description = Adams County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz044.txt
 station = ('khei', 0.0020314)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz044.txt
 
@@ -41615,17 +41615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz044.txt
 centroid = (0.8048167, -1.7634894)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz045.txt
 description = Sioux County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz045.txt
 station = ('k7l2', 0.0097919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz045.txt
 
@@ -41633,17 +41633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz045.txt
 centroid = (0.8078274, -1.7494971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz046.txt
 description = Emmons County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz046.txt
 station = ('k7l2', 0.0011295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz046.txt
 
@@ -41651,17 +41651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz046.txt
 centroid = (0.8108346, -1.7362099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz047.txt
 description = Logan County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz047.txt
 station = ('k7l2', 0.0101359)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz047.txt
 
@@ -41669,17 +41669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz047.txt
 centroid = (0.8108259, -1.7197689)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz048.txt
 description = La Moure, LaMoure County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz048.txt
 station = ('k2d5', 0.0073955)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz048.txt
 
@@ -41687,17 +41687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz048.txt
 centroid = (0.8108119, -1.7044449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz049.txt
 description = Ransom County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz049.txt
 station = ('kgwr', 0.0041485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz049.txt
 
@@ -41705,17 +41705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz049.txt
 centroid = (0.8048045, -1.7355764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz050.txt
 description = McIntosh County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz050.txt
 station = ('k7l2', 0.0099059)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz050.txt
 
@@ -41723,17 +41723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz050.txt
 centroid = (0.8047748, -1.7192296)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz051.txt
 description = Dickey County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz051.txt
 station = ('k2d5', 0.0052506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz051.txt
 
@@ -41741,17 +41741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz051.txt
 centroid = (0.8047329, -1.7039754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz052.txt
 description = Sargent County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz052.txt
 station = ('kgwr', 0.0019401)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz052.txt
 
@@ -41759,17 +41759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz052.txt
 centroid = (0.8074696, -1.6920670)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz053.txt
 description = Richland County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz053.txt
 station = ('kbwp', 0.0041320)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz053.txt
 
@@ -41777,17 +41777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz053.txt
 centroid = (0.8442402, -1.7118887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nd/ndz054.txt
 description = Western Walsh County, Walsh County, ND, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nd/ndc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nd/ndc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nd/ndz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nd/ndz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nd/ndc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nd/ndc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nd/ndc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nd/ndz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nd/ndz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz054.txt
 station = ('kd55', 0.0075604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz054.txt
 
@@ -41795,17 +41795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz054.txt
 centroid = (0.7455994, -1.8000523)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez002.txt
 description = Dawes County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez002.txt
 station = ('kcdr', 0.0020345)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez002.txt
 
@@ -41813,17 +41813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez002.txt
 centroid = (0.7368745, -1.7991849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez003.txt
 description = Box Butte County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez003.txt
 station = ('kaia', 0.0047388)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez003.txt
 
@@ -41831,17 +41831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez003.txt
 centroid = (0.7418487, -1.7873742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez004.txt
 description = Sheridan County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez004.txt
 station = ('kgrn', 0.0060185)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez004.txt
 
@@ -41849,17 +41849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez004.txt
 centroid = (0.7427720, -1.7541885)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez005.txt
 description = Eastern Cherry County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez005.txt
 station = ('kvtn', 0.0054198)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez005.txt
 
@@ -41867,17 +41867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez005.txt
 centroid = (0.7483780, -1.7403097)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez006.txt
 description = Keya Paha County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez006.txt
 station = ('kanw', 0.0063408)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez006.txt
 
@@ -41885,17 +41885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez006.txt
 centroid = (0.7487410, -1.7238006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez007.txt
 description = Boyd County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez007.txt
 station = ('konl', 0.0076328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez007.txt
 
@@ -41903,17 +41903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez007.txt
 centroid = (0.7405432, -1.7440988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez008.txt
 description = Brown County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez008.txt
 station = ('kanw', 0.0028257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez008.txt
 
@@ -41921,17 +41921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez008.txt
 centroid = (0.7403914, -1.7357299)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez009.txt
 description = Rock County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez009.txt
 station = ('kanw', 0.0076212)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez009.txt
 
@@ -41939,17 +41939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez009.txt
 centroid = (0.7409918, -1.7241026)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez010.txt
 description = Holt County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez010.txt
 station = ('konl', 0.0013077)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez010.txt
 
@@ -41957,17 +41957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez010.txt
 centroid = (0.7441543, -1.7085360)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez011.txt
 description = Knox County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez011.txt
 station = ('kykn', 0.0081418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez011.txt
 
@@ -41975,17 +41975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez011.txt
 centroid = (0.7434980, -1.6973728)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez012.txt
 description = Cedar County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez012.txt
 station = ('kykn', 0.0057880)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez012.txt
 
@@ -41993,17 +41993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez012.txt
 centroid = (0.7416462, -1.6906603)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez013.txt
 description = Dixon County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez013.txt
 station = ('klcg', 0.0046284)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez013.txt
 
@@ -42011,17 +42011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez013.txt
 centroid = (0.7398643, -1.6853702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez014.txt
 description = Dakota County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez014.txt
 station = ('ksux', 0.0023407)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez014.txt
 
@@ -42029,17 +42029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez014.txt
 centroid = (0.7357994, -1.6850124)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez015.txt
 description = Thurston County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez015.txt
 station = ('ksux', 0.0044442)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez015.txt
 
@@ -42047,17 +42047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez015.txt
 centroid = (0.7361258, -1.7115868)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez016.txt
 description = Antelope County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez016.txt
 station = ('kbvn', 0.0078303)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez016.txt
 
@@ -42065,17 +42065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez016.txt
 centroid = (0.7376529, -1.7034640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez017.txt
 description = Pierce County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez017.txt
 station = ('kofk', 0.0053658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez017.txt
 
@@ -42083,17 +42083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez017.txt
 centroid = (0.7366895, -1.6950516)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez018.txt
 description = Wayne County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez018.txt
 station = ('klcg', 0.0018703)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez018.txt
 
@@ -42101,17 +42101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez018.txt
 centroid = (0.7304308, -1.8100461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez019.txt
 description = Scotts Bluff County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez019.txt
 station = ('kbff', 0.0014316)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez019.txt
 
@@ -42119,17 +42119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez019.txt
 centroid = (0.7251145, -1.8100879)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez020.txt
 description = Banner County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez020.txt
 station = ('kbff', 0.0057786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez020.txt
 
@@ -42137,17 +42137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez020.txt
 centroid = (0.7280816, -1.7978724)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez021.txt
 description = Morrill County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez021.txt
 station = ('kaia', 0.0064392)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez021.txt
 
@@ -42155,17 +42155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez021.txt
 centroid = (0.7263956, -1.7860897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez022.txt
 description = Garden County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez022.txt
 station = ('kaia', 0.0096427)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez022.txt
 
@@ -42173,17 +42173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez022.txt
 centroid = (0.7315548, -1.7757067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez023.txt
 description = Grant County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez023.txt
 station = ('koga', 0.0138852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez023.txt
 
@@ -42191,17 +42191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez023.txt
 centroid = (0.7315705, -1.7651440)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez024.txt
 description = Hooker County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez024.txt
 station = ('ktif', 0.0073974)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez024.txt
 
@@ -42209,17 +42209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez024.txt
 centroid = (0.7315286, -1.7550298)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez025.txt
 description = Thomas County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez025.txt
 station = ('ktif', 0.0008624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez025.txt
 
@@ -42227,17 +42227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez025.txt
 centroid = (0.7315164, -1.7449261)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez026.txt
 description = Blaine County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez026.txt
 station = ('kbbw', 0.0094915)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez026.txt
 
@@ -42245,17 +42245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez026.txt
 centroid = (0.7315338, -1.7358067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez027.txt
 description = Loup County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez027.txt
 station = ('kbbw', 0.0087041)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez027.txt
 
@@ -42263,17 +42263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez027.txt
 centroid = (0.7315425, -1.7277259)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez028.txt
 description = Garfield County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez028.txt
 station = ('kodx', 0.0052226)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez028.txt
 
@@ -42281,17 +42281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez028.txt
 centroid = (0.7315513, -1.7196415)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez029.txt
 description = Wheeler County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez029.txt
 station = ('kbvn', 0.0069558)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez029.txt
 
@@ -42299,17 +42299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez029.txt
 centroid = (0.7279210, -1.7115973)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez030.txt
 description = Boone County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez030.txt
 station = ('kbvn', 0.0004058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez030.txt
 
@@ -42317,17 +42317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez030.txt
 centroid = (0.7315827, -1.7034553)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez031.txt
 description = Madison County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez031.txt
 station = ('kofk', 0.0024662)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez031.txt
 
@@ -42335,17 +42335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez031.txt
 centroid = (0.7315862, -1.6963536)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez032.txt
 description = Stanton County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez032.txt
 station = ('kofk', 0.0033178)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez032.txt
 
@@ -42353,17 +42353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez032.txt
 centroid = (0.7315792, -1.6892588)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez033.txt
 description = Cuming County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez033.txt
 station = ('klcg', 0.0062083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez033.txt
 
@@ -42371,17 +42371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez033.txt
 centroid = (0.7304465, -1.6812530)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez034.txt
 description = Burt County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez034.txt
 station = ('ktqe', 0.0024018)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez034.txt
 
@@ -42389,17 +42389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez034.txt
 centroid = (0.7255142, -1.7749283)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez035.txt
 description = Arthur County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez035.txt
 station = ('koga', 0.0078978)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez035.txt
 
@@ -42407,17 +42407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez035.txt
 centroid = (0.7255002, -1.7638385)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez036.txt
 description = McPherson County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez036.txt
 station = ('ktif', 0.0093919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez036.txt
 
@@ -42425,17 +42425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez036.txt
 centroid = (0.7254723, -1.7537557)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez037.txt
 description = Logan County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez037.txt
 station = ('ktif', 0.0069922)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez037.txt
 
@@ -42443,17 +42443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez037.txt
 centroid = (0.7224668, -1.7405488)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez038.txt
 description = Custer County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez038.txt
 station = ('kbbw', 0.0013923)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez038.txt
 
@@ -42461,17 +42461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez038.txt
 centroid = (0.7254862, -1.7275601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez039.txt
 description = Valley County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez039.txt
 station = ('kodx', 0.0009570)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez039.txt
 
@@ -42479,17 +42479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez039.txt
 centroid = (0.7254897, -1.7195193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez040.txt
 description = Greeley County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez040.txt
 station = ('kbvn', 0.0066902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez040.txt
 
@@ -42497,17 +42497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez040.txt
 centroid = (0.7225192, -1.7102883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez041.txt
 description = Nance County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez041.txt
 station = ('kbvn', 0.0058364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez041.txt
 
@@ -42515,17 +42515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez041.txt
 centroid = (0.7255351, -1.7020416)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez042.txt
 description = Platte County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez042.txt
 station = ('kolu', 0.0032145)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez042.txt
 
@@ -42533,17 +42533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez042.txt
 centroid = (0.7255875, -1.6944826)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez043.txt
 description = Colfax County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez043.txt
 station = ('kolu', 0.0038738)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez043.txt
 
@@ -42551,17 +42551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez043.txt
 centroid = (0.7256678, -1.6869340)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez044.txt
 description = Dodge County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez044.txt
 station = ('kfet', 0.0028632)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez044.txt
 
@@ -42569,17 +42569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez044.txt
 centroid = (0.7248544, -1.6793872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez045.txt
 description = Washington County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez045.txt
 station = ('kbta', 0.0025066)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez045.txt
 
@@ -42587,17 +42587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez045.txt
 centroid = (0.7194334, -1.7274623)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez046.txt
 description = Sherman County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez046.txt
 station = ('kodx', 0.0069230)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez046.txt
 
@@ -42605,17 +42605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez046.txt
 centroid = (0.7194247, -1.7194478)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez047.txt
 description = Howard County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez047.txt
 station = ('kgri', 0.0051478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez047.txt
 
@@ -42623,17 +42623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez047.txt
 centroid = (0.7185486, -1.7110789)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez048.txt
 description = Merrick County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez048.txt
 station = ('kauh', 0.0048490)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez048.txt
 
@@ -42641,17 +42641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez048.txt
 centroid = (0.7188470, -1.7028898)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez049.txt
 description = Polk County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez049.txt
 station = ('kjyr', 0.0051159)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez049.txt
 
@@ -42659,17 +42659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez049.txt
 centroid = (0.7194980, -1.6952488)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez050.txt
 description = Butler County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez050.txt
 station = ('kolu', 0.0047528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez050.txt
 
@@ -42677,17 +42677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez050.txt
 centroid = (0.7195312, -1.6866391)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez051.txt
 description = Saunders County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez051.txt
 station = ('kahq', 0.0006272)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez051.txt
 
@@ -42695,17 +42695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez051.txt
 centroid = (0.7207390, -1.6782109)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez052.txt
 description = Douglas County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez052.txt
 station = ('kmle', 0.0018221)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez052.txt
 
@@ -42713,17 +42713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez052.txt
 centroid = (0.7175590, -1.6774691)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez053.txt
 description = Sarpy County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez053.txt
 station = ('kmle', 0.0014440)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez053.txt
 
@@ -42731,17 +42731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez053.txt
 centroid = (0.7190355, -1.8101682)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez054.txt
 description = Kimball County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez054.txt
 station = ('kibm', 0.0006825)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez054.txt
 
@@ -42749,17 +42749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez054.txt
 centroid = (0.7194212, -1.7976019)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez055.txt
 description = Cheyenne County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez055.txt
 station = ('ksny', 0.0020965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez055.txt
 
@@ -42767,17 +42767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez055.txt
 centroid = (0.7175328, -1.7860635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez056.txt
 description = Deuel County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez056.txt
 station = ('kggf', 0.0089734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez056.txt
 
@@ -42785,17 +42785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez056.txt
 centroid = (0.7190547, -1.7743244)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez057.txt
 description = Keith County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez057.txt
 station = ('koga', 0.0019757)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez057.txt
 
@@ -42803,17 +42803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez057.txt
 centroid = (0.7129827, -1.7741202)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez058.txt
 description = Perkins County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez058.txt
 station = ('kggf', 0.0011478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez058.txt
 
@@ -42821,17 +42821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez058.txt
 centroid = (0.7164193, -1.7583354)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez059.txt
 description = Lincoln County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez059.txt
 station = ('klbf', 0.0015850)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez059.txt
 
@@ -42839,17 +42839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez059.txt
 centroid = (0.7133143, -1.7421789)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez060.txt
 description = Dawson County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez060.txt
 station = ('klxn', 0.0014841)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez060.txt
 
@@ -42857,17 +42857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez060.txt
 centroid = (0.7130560, -1.7291850)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez061.txt
 description = Buffalo County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez061.txt
 station = ('kear', 0.0023449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez061.txt
 
@@ -42875,17 +42875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez061.txt
 centroid = (0.7133597, -1.7191877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez062.txt
 description = Hall County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez062.txt
 station = ('kgri', 0.0029476)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez062.txt
 
@@ -42893,17 +42893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez062.txt
 centroid = (0.7133772, -1.7108293)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez063.txt
 description = Hamilton County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez063.txt
 station = ('kauh', 0.0005212)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez063.txt
 
@@ -42911,17 +42911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez063.txt
 centroid = (0.7133649, -1.7033907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez064.txt
 description = York County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez064.txt
 station = ('kjyr', 0.0005370)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez064.txt
 
@@ -42929,17 +42929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez064.txt
 centroid = (0.7133562, -1.6954041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez065.txt
 description = Seward County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez065.txt
 station = ('kjyr', 0.0063911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez065.txt
 
@@ -42947,17 +42947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez065.txt
 centroid = (0.7118168, -1.6875205)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez066.txt
 description = Lancaster County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez066.txt
 station = ('klnk', 0.0013505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez066.txt
 
@@ -42965,17 +42965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez066.txt
 centroid = (0.7140107, -1.6779735)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez067.txt
 description = Cass County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez067.txt
 station = ('kpmv', 0.0030233)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez067.txt
 
@@ -42983,17 +42983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez067.txt
 centroid = (0.7094502, -1.6778688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez068.txt
 description = Otoe County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez068.txt
 station = ('kafk', 0.0038665)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez068.txt
 
@@ -43001,17 +43001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez068.txt
 centroid = (0.7072807, -1.7749632)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez069.txt
 description = Chase County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez069.txt
 station = ('kiml', 0.0010858)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez069.txt
 
@@ -43019,17 +43019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez069.txt
 centroid = (0.7072912, -1.7638612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez070.txt
 description = Hayes County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez070.txt
 station = ('kiml', 0.0073630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez070.txt
 
@@ -43037,17 +43037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez070.txt
 centroid = (0.7073837, -1.7522093)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez071.txt
 description = Frontier County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez071.txt
 station = ('kcsb', 0.0049735)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez071.txt
 
@@ -43055,17 +43055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez071.txt
 centroid = (0.7071167, -1.7423744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez072.txt
 description = Gosper County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez072.txt
 station = ('klxn', 0.0048742)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez072.txt
 
@@ -43073,17 +43073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez072.txt
 centroid = (0.7070521, -1.7351103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez073.txt
 description = Phelps County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez073.txt
 station = ('khde', 0.0015160)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez073.txt
 
@@ -43091,17 +43091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez073.txt
 centroid = (0.7069753, -1.7269684)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez074.txt
 description = Kearney County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez074.txt
 station = ('kear', 0.0040150)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez074.txt
 
@@ -43109,17 +43109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez074.txt
 centroid = (0.7072860, -1.7191703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez075.txt
 description = Adams County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez075.txt
 station = ('khsi', 0.0015957)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez075.txt
 
@@ -43127,17 +43127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez075.txt
 centroid = (0.7072842, -1.7113163)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez076.txt
 description = Clay County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez076.txt
 station = ('kauh', 0.0064924)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez076.txt
 
@@ -43145,17 +43145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez076.txt
 centroid = (0.7072894, -1.7033803)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez077.txt
 description = Fillmore County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez077.txt
 station = ('kjyr', 0.0065013)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez077.txt
 
@@ -43163,17 +43163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez077.txt
 centroid = (0.7072772, -1.6954268)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez078.txt
 description = Saline County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez078.txt
 station = ('kbie', 0.0065004)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez078.txt
 
@@ -43181,17 +43181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez078.txt
 centroid = (0.7012070, -1.7747887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez079.txt
 description = Dundy County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez079.txt
 station = ('kiml', 0.0060173)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez079.txt
 
@@ -43199,17 +43199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez079.txt
 centroid = (0.7012087, -1.7635191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez080.txt
 description = Hitchcock County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez080.txt
 station = ('kadt', 0.0058678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez080.txt
 
@@ -43217,17 +43217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez080.txt
 centroid = (0.7012000, -1.7536510)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez081.txt
 description = Red Willow County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez081.txt
 station = ('kmck', 0.0014819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez081.txt
 
@@ -43235,17 +43235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez081.txt
 centroid = (0.7012105, -1.7437986)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez082.txt
 description = Furnas County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez082.txt
 station = ('kcsb', 0.0040287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez082.txt
 
@@ -43253,17 +43253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez082.txt
 centroid = (0.7012122, -1.7349376)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez083.txt
 description = Harlan County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez083.txt
 station = ('khde', 0.0048668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez083.txt
 
@@ -43271,17 +43271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez083.txt
 centroid = (0.7012087, -1.7270504)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez084.txt
 description = Franklin County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez084.txt
 station = ('khde', 0.0069628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez084.txt
 
@@ -43289,17 +43289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez084.txt
 centroid = (0.7012105, -1.7191476)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez085.txt
 description = Webster County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez085.txt
 station = ('khsi', 0.0074460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez085.txt
 
@@ -43307,17 +43307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez085.txt
 centroid = (0.7012105, -1.7112465)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez086.txt
 description = Nuckolls County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez086.txt
 station = ('khjh', 0.0061533)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez086.txt
 
@@ -43325,17 +43325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez086.txt
 centroid = (0.7012087, -1.7033506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez087.txt
 description = Thayer County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez087.txt
 station = ('khjh', 0.0004331)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez087.txt
 
@@ -43343,17 +43343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez087.txt
 centroid = (0.7011982, -1.6954582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez088.txt
 description = Jefferson County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez088.txt
 station = ('kbie', 0.0056628)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez088.txt
 
@@ -43361,17 +43361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez088.txt
 centroid = (0.7027027, -1.6875466)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez089.txt
 description = Gage County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez089.txt
 station = ('kbie', 0.0010466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez089.txt
 
@@ -43379,17 +43379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez089.txt
 centroid = (0.7049839, -1.6801395)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez090.txt
 description = Johnson County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez090.txt
 station = ('kafk', 0.0065899)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez090.txt
 
@@ -43397,17 +43397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez090.txt
 centroid = (0.7049053, -1.6728737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez091.txt
 description = Nemaha County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez091.txt
 station = ('kafk', 0.0036984)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez091.txt
 
@@ -43415,17 +43415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez091.txt
 centroid = (0.7004251, -1.6796525)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez092.txt
 description = Pawnee County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez092.txt
 station = ('kmyz', 0.0071358)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez092.txt
 
@@ -43433,17 +43433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez092.txt
 centroid = (0.7003116, -1.6705716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez093.txt
 description = Richardson County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez093.txt
 station = ('kfnb', 0.0019225)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez093.txt
 
@@ -43451,17 +43451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez093.txt
 centroid = (0.7424299, -1.7705178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez094.txt
 description = Western Cherry County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez094.txt
 station = ('kgrn', 0.0103485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez094.txt
 
@@ -43469,17 +43469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez094.txt
 centroid = (0.7455034, -1.8111613)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez095.txt
 description = North Sioux County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez095.txt
 station = ('kcdr', 0.0088555)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez095.txt
 
@@ -43487,17 +43487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez095.txt
 centroid = (0.7367960, -1.8106604)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ne/nez096.txt
 description = South Sioux County, NE, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nez096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nez096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ne/nec165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ne/nec165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ne/nez096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ne/nez096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nez096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nez096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nez096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ne/nec165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ne/nec165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ne/nec165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ne/nez096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ne/nez096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez096.txt
 station = ('kbff', 0.0063616)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez096.txt
 
@@ -43505,17 +43505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez096.txt
 centroid = (0.7849810, -1.2441265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz001.txt
 description = Northern Coos County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz001.txt
 station = ('kbml', 0.0069658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz001.txt
 
@@ -43523,17 +43523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz001.txt
 centroid = (0.7761741, -1.2448177)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz002.txt
 description = Southern Coos County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz002.txt
 station = ('kbml', 0.0026117)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz002.txt
 
@@ -43541,17 +43541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz002.txt
 centroid = (0.7696274, -1.2522982)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz003.txt
 description = Northern Grafton County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz003.txt
 station = ('khie', 0.0053473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz003.txt
 
@@ -43559,17 +43559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz003.txt
 centroid = (0.7693062, -1.2422870)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz004.txt
 description = Northern Carroll County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz004.txt
 station = ('kizg', 0.0033017)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz004.txt
 
@@ -43577,17 +43577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz004.txt
 centroid = (0.7630737, -1.2552094)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz005.txt
 description = Southern Grafton County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz005.txt
 station = ('k1p1', 0.0023109)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz005.txt
 
@@ -43595,17 +43595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz005.txt
 centroid = (0.7635920, -1.2429851)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz006.txt
 description = Southern Carroll County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz006.txt
 station = ('klci', 0.0040757)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz006.txt
 
@@ -43613,17 +43613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz006.txt
 centroid = (0.7567957, -1.2605169)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz007.txt
 description = Sullivan County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz007.txt
 station = ('kleb', 0.0048504)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz007.txt
 
@@ -43631,17 +43631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz007.txt
 centroid = (0.7556874, -1.2510555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz008.txt
 description = Merrimack County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz008.txt
 station = ('kcon', 0.0028947)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz008.txt
 
@@ -43649,17 +43649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz008.txt
 centroid = (0.7595463, -1.2465717)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz009.txt
 description = Belknap County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz009.txt
 station = ('klci', 0.0008396)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz009.txt
 
@@ -43667,17 +43667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz009.txt
 centroid = (0.7556839, -1.2396952)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz010.txt
 description = Strafford County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz010.txt
 station = ('kdaw', 0.0014521)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz010.txt
 
@@ -43685,17 +43685,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz010.txt
 centroid = (0.7490831, -1.2610213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz011.txt
 description = Cheshire County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz011.txt
 station = ('keen', 0.0003906)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz011.txt
 
@@ -43703,17 +43703,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz011.txt
 centroid = (0.7477828, -1.2471669)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz012.txt
 description = Eastern Hillsborough County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz012.txt
 station = ('kash', 0.0013239)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz012.txt
 
@@ -43721,17 +43721,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz012.txt
 centroid = (0.7502350, -1.2423498)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz013.txt
 description = Interior Rockingham County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz013.txt
 station = ('kmht', 0.0033433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz013.txt
 
@@ -43739,17 +43739,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz013.txt
 centroid = (0.7505003, -1.2362010)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz014.txt
 description = Coastal Rockingham County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz014.txt
 station = ('kpsm', 0.0014544)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz014.txt
 
@@ -43757,17 +43757,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz014.txt
 centroid = (0.7493798, -1.2530225)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nh/nhz015.txt
 description = Western And Central Hillsborough County, NH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nh/nhc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nh/nhc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nh/nhz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nh/nhz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nh/nhc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nh/nhc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nh/nhc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nh/nhz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nh/nhz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz015.txt
 station = ('kafn', 0.0035605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz015.txt
 
@@ -43775,17 +43775,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz015.txt
 centroid = (0.7180180, -1.3035899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz001.txt
 description = Sussex County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz001.txt
 station = ('kfwn', 0.0012949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz001.txt
 
@@ -43793,17 +43793,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz001.txt
 centroid = (0.7172151, -1.2976837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz002.txt
 description = Western Passaic County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz002.txt
 station = ('kcdw', 0.0037757)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz002.txt
 
@@ -43811,17 +43811,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz002.txt
 centroid = (0.7141468, -1.2950326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz004.txt
 description = Eastern Passaic County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz004.txt
 station = ('kcdw', 0.0012526)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz004.txt
 
@@ -43829,17 +43829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz004.txt
 centroid = (0.7110646, -1.2928963)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz006.txt
 description = Hudson County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz006.txt
 station = ('kjrb', 0.0011514)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz006.txt
 
@@ -43847,17 +43847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz006.txt
 centroid = (0.7130962, -1.3089446)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz007.txt
 description = Warren County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz007.txt
 station = ('k12n', 0.0044511)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz007.txt
 
@@ -43865,17 +43865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz007.txt
 centroid = (0.7131782, -1.3010470)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz008.txt
 description = Morris County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz008.txt
 station = ('kmmu', 0.0020061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz008.txt
 
@@ -43883,17 +43883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz008.txt
 centroid = (0.7080312, -1.3074663)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz009.txt
 description = Hunterdon County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz009.txt
 station = ('ksmq', 0.0033680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz009.txt
 
@@ -43901,17 +43901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz009.txt
 centroid = (0.7079701, -1.3023001)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz010.txt
 description = Somerset County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz010.txt
 station = ('ksmq', 0.0011403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz010.txt
 
@@ -43919,17 +43919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz010.txt
 centroid = (0.7058007, -1.2987222)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz012.txt
 description = Middlesex County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz012.txt
 station = ('kldj', 0.0038134)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz012.txt
 
@@ -43937,17 +43937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz012.txt
 centroid = (0.7026626, -1.2961059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz013.txt
 description = Western Monmouth County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz013.txt
 station = ('kblm', 0.0021644)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz013.txt
 
@@ -43955,17 +43955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz013.txt
 centroid = (0.7025945, -1.2920585)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz014.txt
 description = Eastern Monmouth County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz014.txt
 station = ('kblm', 0.0018735)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz014.txt
 
@@ -43973,17 +43973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz014.txt
 centroid = (0.7030762, -1.3037871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz015.txt
 description = Mercer County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz015.txt
 station = ('kttn', 0.0015334)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz015.txt
 
@@ -43991,17 +43991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz015.txt
 centroid = (0.6909270, -1.3150340)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz016.txt
 description = Salem County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz016.txt
 station = ('kilg', 0.0036866)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz016.txt
 
@@ -44009,17 +44009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz016.txt
 centroid = (0.6931977, -1.3114736)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz017.txt
 description = Gloucester County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz017.txt
 station = ('kphl', 0.0028809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz017.txt
 
@@ -44027,17 +44027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz017.txt
 centroid = (0.6947074, -1.3082971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz018.txt
 description = Camden County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz018.txt
 station = ('kvay', 0.0028259)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz018.txt
 
@@ -44045,17 +44045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz018.txt
 centroid = (0.6978699, -1.3047593)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz019.txt
 description = Northwestern Burlington County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz019.txt
 station = ('kvay', 0.0013603)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz019.txt
 
@@ -44063,17 +44063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz019.txt
 centroid = (0.6967197, -1.2969524)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz020.txt
 description = Ocean County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz020.txt
 station = ('kmjx', 0.0002764)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz020.txt
 
@@ -44081,17 +44081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz020.txt
 centroid = (0.6871972, -1.3109151)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz021.txt
 description = Cumberland County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz021.txt
 station = ('kmiv', 0.0003778)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz021.txt
 
@@ -44099,17 +44099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz021.txt
 centroid = (0.6892410, -1.3037191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz022.txt
 description = Atlantic County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz022.txt
 station = ('kacy', 0.0015950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz022.txt
 
@@ -44117,17 +44117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz022.txt
 centroid = (0.6837642, -1.3059025)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz023.txt
 description = Cape May County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz023.txt
 station = ('kwwd', 0.0030710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz023.txt
 
@@ -44135,17 +44135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz023.txt
 centroid = (0.6823400, -1.3050141)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz024.txt
 description = Atlantic Coastal Cape May County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz024.txt
 station = ('kwwd', 0.0023945)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz024.txt
 
@@ -44153,17 +44153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz024.txt
 centroid = (0.6875376, -1.2993069)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz025.txt
 description = Coastal Atlantic County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz025.txt
 station = ('kacy', 0.0022674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz025.txt
 
@@ -44171,17 +44171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz025.txt
 centroid = (0.6944491, -1.2944182)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz026.txt
 description = Coastal Ocean County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz026.txt
 station = ('kmjx', 0.0029615)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz026.txt
 
@@ -44189,17 +44189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz026.txt
 centroid = (0.6937300, -1.3013262)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz027.txt
 description = Southeastern Burlington County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz027.txt
 station = ('kwri', 0.0047223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz027.txt
 
@@ -44207,17 +44207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz027.txt
 centroid = (0.7160091, -1.2942437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz103.txt
 description = Western Bergen County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz103.txt
 station = ('kcdw', 0.0029880)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz103.txt
 
@@ -44225,17 +44225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz103.txt
 centroid = (0.7141154, -1.2919346)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz104.txt
 description = Eastern Bergen County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz104.txt
 station = ('kteb', 0.0009317)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz104.txt
 
@@ -44243,17 +44243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz104.txt
 centroid = (0.7121537, -1.2963730)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz105.txt
 description = Western Essex County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz105.txt
 station = ('kcdw', 0.0013978)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz105.txt
 
@@ -44261,17 +44261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz105.txt
 centroid = (0.7111780, -1.2945526)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz106.txt
 description = Eastern Essex County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz106.txt
 station = ('kewr', 0.0011225)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz106.txt
 
@@ -44279,17 +44279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz106.txt
 centroid = (0.7097661, -1.2977902)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz107.txt
 description = Western Union, Eastern Union County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz107.txt
 station = ('kldj', 0.0017288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz107.txt
 
@@ -44297,17 +44297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz107.txt
 centroid = (0.7094694, -1.2956487)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nj/njz108.txt
 description = Eastern Union County, NJ, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nj/njc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nj/njc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nj/njz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nj/njz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nj/njc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nj/njc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nj/njc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nj/njz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nj/njz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz108.txt
 station = ('kldj', 0.0005756)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz108.txt
 
@@ -44315,17 +44315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz108.txt
 centroid = (0.5626767, -1.8278903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz027.txt
 description = Guadalupe Mountains of Eddy County, Eddy County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz027.txt
 station = ('kcnm', 0.0070376)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz027.txt
 
@@ -44333,17 +44333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz027.txt
 centroid = (0.5672198, -1.8195651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz028.txt
 description = Eddy County Plains, Eddy County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz028.txt
 station = ('kcnm', 0.0029033)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz028.txt
 
@@ -44351,17 +44351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz028.txt
 centroid = (0.5808805, -1.8047699)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz029.txt
 description = Northern Lea County, Lea County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz029.txt
 station = ('ke57', 0.0098104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz029.txt
 
@@ -44369,17 +44369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz029.txt
 centroid = (0.5716023, -1.8053040)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz033.txt
 description = Central Lea County, Lea County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz033.txt
 station = ('khob', 0.0034310)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz033.txt
 
@@ -44387,17 +44387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz033.txt
 centroid = (0.5628722, -1.8045605)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz034.txt
 description = Southern Lea County, Lea County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz034.txt
 station = ('khob', 0.0079965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz034.txt
 
@@ -44405,17 +44405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz034.txt
 centroid = (0.6357711, -1.8920486)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz201.txt
 description = Northwest Plateau, San Juan County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz201.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz201.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz201.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz201.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz201.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz201.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz201.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz201.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz201.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz201.txt
 station = ('kfmn', 0.0061370)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz201.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz201.txt
 
@@ -44423,17 +44423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz201.txt
 centroid = (0.6290324, -1.9011802)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz202.txt
 description = Chuska Mountains, San Juan County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz202.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz202.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz202.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz202.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz202.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz202.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz202.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz202.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz202.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz202.txt
 station = ('krqe', 0.0070927)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz202.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz202.txt
 
@@ -44441,17 +44441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz202.txt
 centroid = (0.6398115, -1.8692965)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz203.txt
 description = Far Northwest Highlands, San Juan County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz203.txt
 station = ('kpso', 0.0109766)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz203.txt
 
@@ -44459,17 +44459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz203.txt
 centroid = (0.6284355, -1.8763197)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz204.txt
 description = Northwest Highlands, San Juan County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz204.txt
 station = ('kgnt', 0.0156957)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz204.txt
 
@@ -44477,17 +44477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz204.txt
 centroid = (0.6113679, -1.8992149)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz205.txt
 description = West Central Plateau, McKinley County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz205.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz205.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz205.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz205.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz205.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz205.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz205.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz205.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz205.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz205.txt
 station = ('kgup', 0.0085284)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz205.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz205.txt
 
@@ -44495,17 +44495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz205.txt
 centroid = (0.6121027, -1.8859574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz206.txt
 description = West Central Mountains, Socorro County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz206.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz206.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz206.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz206.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz206.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz206.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz206.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz206.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz206.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz206.txt
 station = ('kgnt', 0.0028005)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz206.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz206.txt
 
@@ -44513,17 +44513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz206.txt
 centroid = (0.6103015, -1.8736773)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz207.txt
 description = West Central Highlands, Valencia County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz207.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz207.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz207.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz207.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz207.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz207.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz207.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz207.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz207.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz207.txt
 station = ('kaeg', 0.0085623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz207.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz207.txt
 
@@ -44531,17 +44531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz207.txt
 centroid = (0.5909179, -1.8904883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz208.txt
 description = Southwest Mountains, Socorro County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz208.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz208.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz208.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz208.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz208.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz208.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz208.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz208.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz208.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz208.txt
 station = ('kjtc', 0.0151475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz208.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz208.txt
 
@@ -44549,17 +44549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz208.txt
 centroid = (0.5848424, -1.8999672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz209.txt
 description = San Francisco River Valley, Catron County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz209.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz209.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz209.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz209.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz209.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz209.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz209.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz209.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz209.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz209.txt
 station = ('kjtc', 0.0126686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz209.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz209.txt
 
@@ -44567,17 +44567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz209.txt
 centroid = (0.6406371, -1.8544804)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz210.txt
 description = Tusas Mountains Including Chama, Taos County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz210.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz210.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz210.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz210.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz210.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz210.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz210.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz210.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz210.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz210.txt
 station = ('kskx', 0.0093634)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz210.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz210.txt
 
@@ -44585,17 +44585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz210.txt
 centroid = (0.6266099, -1.8604756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz211.txt
 description = Jemez Mountains, Sandoval County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz211.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz211.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz211.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz211.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz211.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz211.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz211.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz211.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz211.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz211.txt
 station = ('klam', 0.0046575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz211.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz211.txt
 
@@ -44603,17 +44603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz211.txt
 centroid = (0.6198711, -1.8447083)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz212.txt
 description = Glorieta Mesa Including Glorieta Pass, Santa Fe County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz212.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz212.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz212.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz212.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz212.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz212.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz212.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz212.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz212.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz212.txt
 station = ('ksaf', 0.0058000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz212.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz212.txt
 
@@ -44621,17 +44621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz212.txt
 centroid = (0.6408168, -1.8394112)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz213.txt
 description = Northern Sangre de Cristo Mountains, Taos County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz213.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz213.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz213.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz213.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz213.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz213.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz213.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz213.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz213.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz213.txt
 station = ('kaxx', 0.0053228)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz213.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz213.txt
 
@@ -44639,17 +44639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz213.txt
 centroid = (0.6280829, -1.8430642)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz214.txt
 description = Southern Sangre de Cristo Mountains, Taos County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz214.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz214.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz214.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz214.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz214.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz214.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz214.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz214.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz214.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz214.txt
 station = ('kskx', 0.0081442)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz214.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz214.txt
 
@@ -44657,17 +44657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz214.txt
 centroid = (0.6323258, -1.8353080)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz215.txt
 description = East Slopes Sangre de Cristo Mountains, San Miguel County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz215.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz215.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz215.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz215.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz215.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz215.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz215.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz215.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz215.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz215.txt
 station = ('kaxx', 0.0038547)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz215.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz215.txt
 
@@ -44675,17 +44675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz215.txt
 centroid = (0.6391954, -1.8457276)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz216.txt
 description = Upper Rio Grande Valley, Taos County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz216.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz216.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz216.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz216.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz216.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz216.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz216.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz216.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz216.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz216.txt
 station = ('kskx', 0.0032532)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz216.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz216.txt
 
@@ -44693,17 +44693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz216.txt
 centroid = (0.6306485, -1.8516739)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz217.txt
 description = Espanola Valley, Taos County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz217.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz217.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz217.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz217.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz217.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz217.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz217.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz217.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz217.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz217.txt
 station = ('klam', 0.0050792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz217.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz217.txt
 
@@ -44711,17 +44711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz217.txt
 centroid = (0.6201225, -1.8519235)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz218.txt
 description = Santa Fe Metro Area, Santa Fe County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz218.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz218.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz218.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz218.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz218.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz218.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz218.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz218.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz218.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz218.txt
 station = ('ksaf', 0.0015439)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz218.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz218.txt
 
@@ -44729,17 +44729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz218.txt
 centroid = (0.6109054, -1.8630412)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz219.txt
 description = Middle Rio Grande Valley/Albuquerque Metro Area, Valencia County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz219.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz219.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz219.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz219.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz219.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz219.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz219.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz219.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz219.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz219.txt
 station = ('kabq', 0.0021339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz219.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz219.txt
 
@@ -44747,17 +44747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz219.txt
 centroid = (0.5920558, -1.8640256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz220.txt
 description = Lower Rio Grande Valley, Socorro County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz220.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz220.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz220.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz220.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz220.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz220.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz220.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz220.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz220.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz220.txt
 station = ('konm', 0.0021850)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz220.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz220.txt
 
@@ -44765,17 +44765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz220.txt
 centroid = (0.6100903, -1.8553600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz221.txt
 description = Sandia/Manzano Mountains Including Edgewood, Valencia County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz221.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz221.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz221.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz221.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz221.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz221.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz221.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz221.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz221.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz221.txt
 station = ('k0e0', 0.0044400)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz221.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz221.txt
 
@@ -44783,17 +44783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz221.txt
 centroid = (0.6071826, -1.8497977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz222.txt
 description = Estancia Valley, Torrance County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz222.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz222.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz222.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz222.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz222.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz222.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz222.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz222.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz222.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz222.txt
 station = ('k0e0', 0.0034020)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz222.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz222.txt
 
@@ -44801,17 +44801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz222.txt
 centroid = (0.6079924, -1.8424690)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz223.txt
 description = Central Highlands, Torrance County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz223.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz223.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz223.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz223.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz223.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz223.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz223.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz223.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz223.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz223.txt
 station = ('kcqc', 0.0032157)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz223.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz223.txt
 
@@ -44819,17 +44819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz223.txt
 centroid = (0.5957315, -1.8529218)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz224.txt
 description = South Central Highlands, Valencia County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz224.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz224.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz224.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz224.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz224.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz224.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz224.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz224.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz224.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz224.txt
 station = ('konm', 0.0108232)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz224.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz224.txt
 
@@ -44837,17 +44837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz224.txt
 centroid = (0.5874551, -1.8507436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz225.txt
 description = Upper Tularosa Valley, Socorro County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz225.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz225.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz225.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz225.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz225.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz225.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz225.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz225.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz225.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz225.txt
 station = ('ksrr', 0.0080925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz225.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz225.txt
 
@@ -44855,17 +44855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz225.txt
 centroid = (0.5862002, -1.8428391)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz226.txt
 description = South Central Mountains, Lincoln County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz226.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz226.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz226.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz226.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz226.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz226.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz226.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz226.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz226.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz226.txt
 station = ('ksrr', 0.0022369)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz226.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz226.txt
 
@@ -44873,17 +44873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz226.txt
 centroid = (0.6418780, -1.8205634)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz227.txt
 description = Johnson and Bartlett Mesas Including Raton Pass, Union County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz227.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz227.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz227.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz227.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz227.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz227.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz227.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz227.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz227.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz227.txt
 station = ('krtn', 0.0048927)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz227.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz227.txt
 
@@ -44891,17 +44891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz227.txt
 centroid = (0.6327866, -1.8254381)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz228.txt
 description = Far Northeast Highlands, Mora County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz228.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz228.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz228.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz228.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz228.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz228.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz228.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz228.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz228.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz228.txt
 station = ('krtn', 0.0085346)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz228.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz228.txt
 
@@ -44909,17 +44909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz228.txt
 centroid = (0.6201452, -1.8329587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz229.txt
 description = Northeast Highlands, San Miguel County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz229.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz229.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz229.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz229.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz229.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz229.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz229.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz229.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz229.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz229.txt
 station = ('klvs', 0.0026104)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz229.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz229.txt
 
@@ -44927,17 +44927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz229.txt
 centroid = (0.6362057, -1.8050666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz230.txt
 description = Union County, Union County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz230.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz230.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz230.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz230.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz230.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz230.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz230.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz230.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz230.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz230.txt
 station = ('kcao', 0.0038285)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz230.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz230.txt
 
@@ -44945,17 +44945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz230.txt
 centroid = (0.6258402, -1.8119991)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz231.txt
 description = Harding County, Harding County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz231.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz231.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz231.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz231.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz231.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz231.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz231.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz231.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz231.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz231.txt
 station = ('ktcc', 0.0121824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz231.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz231.txt
 
@@ -44963,17 +44963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz231.txt
 centroid = (0.6186442, -1.8196436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz232.txt
 description = Eastern San Miguel County, San Miguel County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz232.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz232.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz232.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz232.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz232.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz232.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz232.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz232.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz232.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz232.txt
 station = ('ksxu', 0.0104789)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz232.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz232.txt
 
@@ -44981,17 +44981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz232.txt
 centroid = (0.6084794, -1.8289427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz233.txt
 description = Guadalupe County, Guadalupe County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz233.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz233.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz233.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz233.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz233.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz233.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz233.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz233.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz233.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz233.txt
 station = ('ksxu', 0.0024515)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz233.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz233.txt
 
@@ -44999,17 +44999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz233.txt
 centroid = (0.6126856, -1.8072832)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz234.txt
 description = Quay County, Quay County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz234.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz234.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz234.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz234.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz234.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz234.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz234.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz234.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz234.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz234.txt
 station = ('ktcc', 0.0015550)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz234.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz234.txt
 
@@ -45017,17 +45017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz234.txt
 centroid = (0.6034319, -1.8037419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz235.txt
 description = Curry County, Curry County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz235.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz235.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz235.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz235.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz235.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz235.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz235.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz235.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz235.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz235.txt
 station = ('kcvs', 0.0033576)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz235.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz235.txt
 
@@ -45035,17 +45035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz235.txt
 centroid = (0.5937837, -1.8060702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz236.txt
 description = Roosevelt County, Roosevelt County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz236.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz236.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz236.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz236.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz236.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz236.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz236.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz236.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz236.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz236.txt
 station = ('k4mr', 0.0067076)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz236.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz236.txt
 
@@ -45053,17 +45053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz236.txt
 centroid = (0.5993880, -1.8223332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz237.txt
 description = De Baca County, De Baca County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz237.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz237.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz237.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz237.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz237.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz237.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz237.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz237.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz237.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz237.txt
 station = ('k4mr', 0.0088526)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz237.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz237.txt
 
@@ -45071,17 +45071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz237.txt
 centroid = (0.5846504, -1.8205774)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz238.txt
 description = Chaves County Plains, Chaves County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz238.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz238.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz238.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz238.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz238.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz238.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz238.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz238.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz238.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz238.txt
 station = ('krow', 0.0047328)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz238.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz238.txt
 
@@ -45089,17 +45089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz238.txt
 centroid = (0.5897537, -1.8354371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz239.txt
 description = Eastern Lincoln County, Lincoln County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz239.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz239.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz239.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz239.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz239.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz239.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz239.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz239.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz239.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz239.txt
 station = ('ksrr', 0.0078051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz239.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz239.txt
 
@@ -45107,17 +45107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz239.txt
 centroid = (0.5727856, -1.8342765)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz240.txt
 description = Southwest Chaves County, Chaves County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz240.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz240.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz240.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz240.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz240.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz240.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz240.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz240.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz240.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz240.txt
 station = ('kats', 0.0092406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz240.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz240.txt
 
@@ -45125,17 +45125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz240.txt
 centroid = (0.5930489, -1.8768084)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz241.txt
 description = San Agustin Plains and Adjacent Lowlands, Socorro County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz241.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz241.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz241.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz241.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz241.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz241.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz241.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz241.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz241.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz241.txt
 station = ('konm', 0.0091856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz241.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz241.txt
 
@@ -45143,17 +45143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz241.txt
 centroid = (0.5770966, -1.9032065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz401.txt
 description = Upper Gila River Valley, Hidalgo County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz401.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz401.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz401.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz401.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz401.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz401.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz401.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz401.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz401.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz401.txt
 station = ('ksad', 0.0093896)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz401.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz401.txt
 
@@ -45161,17 +45161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz401.txt
 centroid = (0.5689093, -1.8857148)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz403.txt
 description = Southern Gila Foothills/Mimbres Valley, Luna County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz403.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz403.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz403.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz403.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz403.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz403.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz403.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz403.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz403.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz403.txt
 station = ('ksvc', 0.0016952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz403.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz403.txt
 
@@ -45179,17 +45179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz403.txt
 centroid = (0.5756794, -1.9031925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz404.txt
 description = Southwest Desert/Lower Gila River Valley, Hidalgo County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz404.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz404.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz404.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz404.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz404.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz404.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz404.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz404.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz404.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz404.txt
 station = ('ksad', 0.0089329)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz404.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz404.txt
 
@@ -45197,17 +45197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz404.txt
 centroid = (0.5543567, -1.8949022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz405.txt
 description = Lowlands of the Bootheel, Hidalgo County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz405.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz405.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz405.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz405.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz405.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz405.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz405.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz405.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz405.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz405.txt
 station = ('kdmn', 0.0153924)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz405.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz405.txt
 
@@ -45215,17 +45215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz405.txt
 centroid = (0.5506793, -1.8996146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz406.txt
 description = Uplands of the Bootheel, Hidalgo County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz406.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz406.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz406.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz406.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz406.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz406.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz406.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz406.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz406.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz406.txt
 station = ('kdug', 0.0114069)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz406.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz406.txt
 
@@ -45233,17 +45233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz406.txt
 centroid = (0.5612717, -1.8804718)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz407.txt
 description = Southwest Desert/Mimbres Basin, Luna County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz407.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz407.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz407.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz407.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz407.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz407.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz407.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz407.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz407.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz407.txt
 station = ('kdmn', 0.0019278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz407.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz407.txt
 
@@ -45251,17 +45251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz407.txt
 centroid = (0.5765817, -1.8765658)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz408.txt
 description = Eastern Black Range Foothills, Sierra County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz408.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz408.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz408.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz408.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz408.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz408.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz408.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz408.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz408.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz408.txt
 station = ('ktcs', 0.0050528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz408.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz408.txt
 
@@ -45269,17 +45269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz408.txt
 centroid = (0.5777616, -1.8682633)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz409.txt
 description = Sierra County Lakes, Sierra County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz409.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz409.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz409.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz409.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz409.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz409.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz409.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz409.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz409.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz409.txt
 station = ('k0a0', 0.0022700)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz409.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz409.txt
 
@@ -45287,17 +45287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz409.txt
 centroid = (0.5692077, -1.8660659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz410.txt
 description = Northern Dona Ana County, Dona Ana County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz410.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz410.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz410.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz410.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz410.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz410.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz410.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz410.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz410.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz410.txt
 station = ('klru', 0.0056509)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz410.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz410.txt
 
@@ -45305,17 +45305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz410.txt
 centroid = (0.5602542, -1.8660205)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz411.txt
 description = Southern Dona Ana County/Mesilla Valley, Dona Ana County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz411.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz411.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz411.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz411.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz411.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz411.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz411.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz411.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz411.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz411.txt
 station = ('klru', 0.0033045)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz411.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz411.txt
 
@@ -45323,17 +45323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz411.txt
 centroid = (0.5738660, -1.8459004)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz414.txt
 description = West Slopes Sacramento Mountains Below 7500 Feet, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz414.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz414.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz414.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz414.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz414.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz414.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz414.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz414.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz414.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz414.txt
 station = ('kalm', 0.0033418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz414.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz414.txt
 
@@ -45341,17 +45341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz414.txt
 centroid = (0.5758033, -1.8444692)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz415.txt
 description = Sacramento Mountains Above 7500 Feet, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz415.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz415.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz415.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz415.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz415.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz415.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz415.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz415.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz415.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz415.txt
 station = ('kalm', 0.0052246)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz415.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz415.txt
 
@@ -45359,17 +45359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz415.txt
 centroid = (0.5748364, -1.8402490)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz416.txt
 description = East Slopes Sacramento Mountains Below 7500 Feet, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz416.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz416.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz416.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz416.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz416.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz416.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz416.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz416.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz416.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz416.txt
 station = ('kalm', 0.0081829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz416.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz416.txt
 
@@ -45377,17 +45377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz416.txt
 centroid = (0.5630607, -1.8399837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz417.txt
 description = Otero Mesa, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz417.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz417.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz417.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz417.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz417.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz417.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz417.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz417.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz417.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz417.txt
 station = ('kalm', 0.0129486)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz417.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz417.txt
 
@@ -45395,17 +45395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz417.txt
 centroid = (0.5717699, -1.8866957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz425.txt
 description = Central Grant County/Silver City Area, Grant County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz425.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz425.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz425.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz425.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz425.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz425.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz425.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz425.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz425.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz425.txt
 station = ('ksvc', 0.0023309)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz425.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz425.txt
 
@@ -45413,17 +45413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz425.txt
 centroid = (0.5772083, -1.8857462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz426.txt
 description = Southern Gila Region Highlands/Black Range, Sierra County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz426.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz426.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz426.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz426.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz426.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz426.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz426.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz426.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz426.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz426.txt
 station = ('ksvc', 0.0078017)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz426.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz426.txt
 
@@ -45431,17 +45431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz426.txt
 centroid = (0.5714540, -1.8573829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz427.txt
 description = West Central Tularosa Basin/White Sands, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz427.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz427.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz427.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz427.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz427.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz427.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz427.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz427.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz427.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz427.txt
 station = ('khmn', 0.0050625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz427.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz427.txt
 
@@ -45449,17 +45449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz427.txt
 centroid = (0.5771699, -1.8517821)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz428.txt
 description = East Central Tularosa Basin/Alamogordo, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz428.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz428.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz428.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz428.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz428.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz428.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz428.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz428.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz428.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz428.txt
 station = ('khmn', 0.0038293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz428.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz428.txt
 
@@ -45467,17 +45467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz428.txt
 centroid = (0.5643592, -1.8519584)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nm/nmz429.txt
 description = Southeast Tularosa Basin, Otero County, NM, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmz429.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmz429.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nm/nmc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nm/nmc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nm/nmz429.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nm/nmz429.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmz429.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmz429.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmz429.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nm/nmc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nm/nmc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nm/nmc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nm/nmz429.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nm/nmz429.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz429.txt
 station = ('kalm', 0.0088861)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz429.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz429.txt
 
@@ -45485,17 +45485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz429.txt
 centroid = (0.6738140, -2.0700198)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz001.txt
 description = Mineral and Southern Lyon Counties, Mineral County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz001.txt
 station = ('khth', 0.0010706)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz001.txt
 
@@ -45503,17 +45503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz001.txt
 centroid = (0.6844361, -2.0929098)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz002.txt
 description = Greater Lake Tahoe Area, Carson City County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc510.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc510.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc510.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc510.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc510.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz002.txt
 station = ('kcxp', 0.0024996)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc510.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz002.txt
 
@@ -45521,17 +45521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz002.txt
 centroid = (0.6879233, -2.0883859)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz003.txt
 description = Greater Reno-Carson City-Minden Area, Carson City County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc510.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc510.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc510.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc510.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc510.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz003.txt
 station = ('krno', 0.0019118)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc510.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz003.txt
 
@@ -45539,17 +45539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz003.txt
 centroid = (0.6983970, -2.0680406)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz004.txt
 description = Western Nevada Basin and Range including Pyramid Lake, Washoe County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz004.txt
 station = ('klol', 0.0013625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz004.txt
 
@@ -45557,17 +45557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz004.txt
 centroid = (0.7175502, -2.0886111)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz005.txt
 description = Northern Washoe County, Washoe County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz005.txt
 station = ('kaat', 0.0134363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz005.txt
 
@@ -45575,17 +45575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz005.txt
 centroid = (0.6558302, -2.0411818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz014.txt
 description = Esmeralda and Central Nye County, Nye County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz014.txt
 station = ('ktph', 0.0081825)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz014.txt
 
@@ -45593,17 +45593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz014.txt
 centroid = (0.6572491, -2.0048737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz015.txt
 description = Lincoln County, Lincoln County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz015.txt
 station = ('kins', 0.0217763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz015.txt
 
@@ -45611,17 +45611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz015.txt
 centroid = (0.6387504, -1.9985887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz016.txt
 description = Northeast Clark County, Clark County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz016.txt
 station = ('klsv', 0.0097121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz016.txt
 
@@ -45629,17 +45629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz016.txt
 centroid = (0.6373279, -2.0243079)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz017.txt
 description = Western Clark and Southern Nye County, Nye County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz017.txt
 station = ('kdra', 0.0021568)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz017.txt
 
@@ -45647,17 +45647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz017.txt
 centroid = (0.6419077, -2.0097658)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz018.txt
 description = Sheep Range, Lincoln County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz018.txt
 station = ('kins', 0.0079807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz018.txt
 
@@ -45665,17 +45665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz018.txt
 centroid = (0.6324166, -2.0189812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz019.txt
 description = Spring Mountains-Red Rock Canyon, Nye County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz019.txt
 station = ('kins', 0.0060856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz019.txt
 
@@ -45683,17 +45683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz019.txt
 centroid = (0.6308231, -2.0101166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz020.txt
 description = Las Vegas Valley, Clark County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz020.txt
 station = ('kvgt', 0.0010008)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz020.txt
 
@@ -45701,17 +45701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz020.txt
 centroid = (0.6272923, -2.0000321)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz021.txt
 description = Lake Mead National Recreation Area, Clark County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz021.txt
 station = ('kbvu', 0.0037515)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz021.txt
 
@@ -45719,17 +45719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz021.txt
 centroid = (0.6202167, -2.0075161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz022.txt
 description = Southern Clark County, Clark County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz022.txt
 station = ('kbvu', 0.0075435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz022.txt
 
@@ -45737,17 +45737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz022.txt
 centroid = (0.7226850, -2.0614433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz030.txt
 description = Humboldt County, Humboldt County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz030.txt
 station = ('kwmc', 0.0097494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz030.txt
 
@@ -45755,17 +45755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz030.txt
 centroid = (0.7250918, -2.0175552)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz031.txt
 description = Northern Elko County, Elko County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz031.txt
 station = ('k10u', 0.0104360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz031.txt
 
@@ -45773,17 +45773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz031.txt
 centroid = (0.7094449, -1.9937437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz033.txt
 description = Extreme Eastern Elko County, Elko County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz033.txt
 station = ('kenv', 0.0030326)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz033.txt
 
@@ -45791,17 +45791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz033.txt
 centroid = (0.7076263, -2.0139546)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz034.txt
 description = Ruby Mountains/East Humboldt Range, White Pine County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz034.txt
 station = ('keko', 0.0072419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz034.txt
 
@@ -45809,17 +45809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz034.txt
 centroid = (0.6883282, -2.0053432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz035.txt
 description = White Pine County, White Pine County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz035.txt
 station = ('kely', 0.0024981)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz035.txt
 
@@ -45827,17 +45827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz035.txt
 centroid = (0.7066803, -2.0368149)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz036.txt
 description = Northern Lander County and Northern Eureka County, Lander County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz036.txt
 station = ('kbam', 0.0029838)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz036.txt
 
@@ -45845,17 +45845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz036.txt
 centroid = (0.6913860, -2.0369668)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz037.txt
 description = Southern Lander County and Southern Eureka County, Lander County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz037.txt
 station = ('ktmt', 0.0070436)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz037.txt
 
@@ -45863,17 +45863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz037.txt
 centroid = (0.7106701, -2.0198748)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz038.txt
 description = Southwest Elko County, Elko County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz038.txt
 station = ('keko', 0.0021249)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz038.txt
 
@@ -45881,17 +45881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz038.txt
 centroid = (0.7082476, -2.0046258)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz039.txt
 description = South Central Elko County, Elko County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz039.txt
 station = ('keko', 0.0130364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz039.txt
 
@@ -45899,17 +45899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz039.txt
 centroid = (0.6640384, -2.0328408)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz040.txt
 description = Northwestern Nye County, Nye County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz040.txt
 station = ('ktph', 0.0083900)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz040.txt
 
@@ -45917,17 +45917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz040.txt
 centroid = (0.6728192, -2.0222938)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/nv/nvz041.txt
 description = Northeastern Nye County, Nye County, NV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/nv/nvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/nv/nvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/nv/nvz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/nv/nvz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/nv/nvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/nv/nvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/nv/nvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/nv/nvz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/nv/nvz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz041.txt
 station = ('kp68', 0.0184170)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz041.txt
 
@@ -45935,17 +45935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz041.txt
 centroid = (0.7540014, -1.3743159)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz001.txt
 description = Niagara County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz001.txt
 station = ('kiag', 0.0028416)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz001.txt
 
@@ -45953,17 +45953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz001.txt
 centroid = (0.7548933, -1.3653920)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz002.txt
 description = Orleans County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz002.txt
 station = ('kgvq', 0.0039327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz002.txt
 
@@ -45971,17 +45971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz002.txt
 centroid = (0.7530467, -1.3560493)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz003.txt
 description = Monroe County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz003.txt
 station = ('kroc', 0.0005431)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz003.txt
 
@@ -45989,17 +45989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz003.txt
 centroid = (0.7532248, -1.3444132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz004.txt
 description = Wayne County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz004.txt
 station = ('ksdc', 0.0017802)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz004.txt
 
@@ -46007,17 +46007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz004.txt
 centroid = (0.7535895, -1.3370688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz005.txt
 description = Northern Cayuga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz005.txt
 station = ('kfzy', 0.0041529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz005.txt
 
@@ -46025,17 +46025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz005.txt
 centroid = (0.7579267, -1.3289146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz006.txt
 description = Oswego County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz006.txt
 station = ('kfzy', 0.0033453)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz006.txt
 
@@ -46043,17 +46043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz006.txt
 centroid = (0.7686587, -1.3248829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz007.txt
 description = Jefferson County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz007.txt
 station = ('kart', 0.0018435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz007.txt
 
@@ -46061,17 +46061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz007.txt
 centroid = (0.7641872, -1.3168300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz008.txt
 description = Lewis County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz008.txt
 station = ('kgtb', 0.0058512)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz008.txt
 
@@ -46079,17 +46079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz008.txt
 centroid = (0.7571465, -1.3171860)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz009.txt
 description = Northern Oneida County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz009.txt
 station = ('krme', 0.0027280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz009.txt
 
@@ -46097,17 +46097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz009.txt
 centroid = (0.7494007, -1.3734397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz010.txt
 description = Northern Erie County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz010.txt
 station = ('kbuf', 0.0005293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz010.txt
 
@@ -46115,17 +46115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz010.txt
 centroid = (0.7505090, -1.3647358)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz011.txt
 description = Genesee County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz011.txt
 station = ('kgvq', 0.0006302)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz011.txt
 
@@ -46133,17 +46133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz011.txt
 centroid = (0.7452957, -1.3652751)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz012.txt
 description = Wyoming County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz012.txt
 station = ('kgvq', 0.0057950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz012.txt
 
@@ -46151,17 +46151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz012.txt
 centroid = (0.7457460, -1.3574368)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz013.txt
 description = Livingston County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz013.txt
 station = ('kdsv', 0.0029167)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz013.txt
 
@@ -46169,17 +46169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz013.txt
 centroid = (0.7479242, -1.3491360)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz014.txt
 description = Ontario County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz014.txt
 station = ('kiua', 0.0010301)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz014.txt
 
@@ -46187,17 +46187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz014.txt
 centroid = (0.7440949, -1.3457448)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz015.txt
 description = Yates County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz015.txt
 station = ('kpeo', 0.0007685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz015.txt
 
@@ -46205,17 +46205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz015.txt
 centroid = (0.7466693, -1.3408265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz016.txt
 description = Seneca County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz016.txt
 station = ('kpeo', 0.0036944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz016.txt
 
@@ -46223,17 +46223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz016.txt
 centroid = (0.7470219, -1.3357040)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz017.txt
 description = Southern Cayuga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz017.txt
 station = ('kith', 0.0054949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz017.txt
 
@@ -46241,17 +46241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz017.txt
 centroid = (0.7505928, -1.3298466)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz018.txt
 description = Onondaga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz018.txt
 station = ('ksyr', 0.0022802)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz018.txt
 
@@ -46259,17 +46259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz018.txt
 centroid = (0.7370211, -1.3852050)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz019.txt
 description = Chautauqua County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz019.txt
 station = ('kjhw', 0.0018778)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz019.txt
 
@@ -46277,17 +46277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz019.txt
 centroid = (0.7373772, -1.3732059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz020.txt
 description = Cattaraugus County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz020.txt
 station = ('kole', 0.0040432)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz020.txt
 
@@ -46295,17 +46295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz020.txt
 centroid = (0.7375308, -1.3618385)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz021.txt
 description = Allegany County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz021.txt
 station = ('kelz', 0.0027702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz021.txt
 
@@ -46313,17 +46313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz021.txt
 centroid = (0.7377123, -1.3506021)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz022.txt
 description = Steuben County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz022.txt
 station = ('kdsv', 0.0067531)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz022.txt
 
@@ -46331,17 +46331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz022.txt
 centroid = (0.7399114, -1.3417254)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz023.txt
 description = Schuyler County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz023.txt
 station = ('kelm', 0.0039771)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz023.txt
 
@@ -46349,17 +46349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz023.txt
 centroid = (0.7355044, -1.3397147)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz024.txt
 description = Chemung County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz024.txt
 station = ('kelm', 0.0018648)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz024.txt
 
@@ -46367,17 +46367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz024.txt
 centroid = (0.7409272, -1.3347179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz025.txt
 description = Tompkins County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz025.txt
 station = ('kith', 0.0007061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz025.txt
 
@@ -46385,17 +46385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz025.txt
 centroid = (0.7827226, -1.3075204)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz026.txt
 description = Northern St. Lawrence County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz026.txt
 station = ('kmss', 0.0017147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz026.txt
 
@@ -46403,17 +46403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz026.txt
 centroid = (0.7836808, -1.2989753)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz027.txt
 description = Northern Franklin County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz027.txt
 station = ('cwbz', 0.0041449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz027.txt
 
@@ -46421,17 +46421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz027.txt
 centroid = (0.7819529, -1.2830456)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz028.txt
 description = Eastern Clinton County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz028.txt
 station = ('kpbg', 0.0027249)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz028.txt
 
@@ -46439,17 +46439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz028.txt
 centroid = (0.7735421, -1.3064749)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz029.txt
 description = Southeastern St. Lawrence County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz029.txt
 station = ('kptd', 0.0063183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz029.txt
 
@@ -46457,17 +46457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz029.txt
 centroid = (0.7769543, -1.2963154)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz030.txt
 description = Southern Franklin County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz030.txt
 station = ('kslk', 0.0022247)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz030.txt
 
@@ -46475,17 +46475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz030.txt
 centroid = (0.7802826, -1.2879326)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz031.txt
 description = Western Clinton County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz031.txt
 station = ('kpbg', 0.0041711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz031.txt
 
@@ -46493,17 +46493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz031.txt
 centroid = (0.7629026, -1.3084611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz032.txt
 description = Northern Herkimer County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz032.txt
 station = ('krme', 0.0099645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz032.txt
 
@@ -46511,17 +46511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz032.txt
 centroid = (0.7620300, -1.3002232)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz033.txt
 description = Hamilton County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz033.txt
 station = ('kgfl', 0.0125313)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz033.txt
 
@@ -46529,17 +46529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz033.txt
 centroid = (0.7694301, -1.2890147)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz034.txt
 description = Western Essex County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz034.txt
 station = ('kslk', 0.0069859)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz034.txt
 
@@ -46547,17 +46547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz034.txt
 centroid = (0.7722890, -1.2816738)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz035.txt
 description = Eastern Essex County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz035.txt
 station = ('kbtv', 0.0052009)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz035.txt
 
@@ -46565,17 +46565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz035.txt
 centroid = (0.7489714, -1.3206854)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz036.txt
 description = Madison County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz036.txt
 station = ('kvgc', 0.0018366)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz036.txt
 
@@ -46583,17 +46583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz036.txt
 centroid = (0.7525860, -1.3160969)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz037.txt
 description = Southern Oneida County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz037.txt
 station = ('krme', 0.0019799)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz037.txt
 
@@ -46601,17 +46601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz037.txt
 centroid = (0.7521025, -1.3082098)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz038.txt
 description = Southern Herkimer County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz038.txt
 station = ('krme', 0.0061780)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz038.txt
 
@@ -46619,17 +46619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz038.txt
 centroid = (0.7511967, -1.2988967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz039.txt
 description = Southern Fulton County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz039.txt
 station = ('ksch', 0.0070646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz039.txt
 
@@ -46637,17 +46637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz039.txt
 centroid = (0.7487864, -1.2992179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz040.txt
 description = Montgomery County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz040.txt
 station = ('kalb', 0.0086091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz040.txt
 
@@ -46655,17 +46655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz040.txt
 centroid = (0.7536471, -1.2890688)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz041.txt
 description = Northern Saratoga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz041.txt
 station = ('kgfl', 0.0040636)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz041.txt
 
@@ -46673,17 +46673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz041.txt
 centroid = (0.7609217, -1.2891805)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz042.txt
 description = Northern Warren County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz042.txt
 station = ('kgfl', 0.0055801)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz042.txt
 
@@ -46691,17 +46691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz042.txt
 centroid = (0.7595603, -1.2814888)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz043.txt
 description = Northern Washington County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz043.txt
 station = ('kgfl', 0.0040668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz043.txt
 
@@ -46709,17 +46709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz043.txt
 centroid = (0.7434230, -1.3276755)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz044.txt
 description = Cortland County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz044.txt
 station = ('kn03', 0.0018596)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz044.txt
 
@@ -46727,17 +46727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz044.txt
 centroid = (0.7416532, -1.3196696)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz045.txt
 description = Chenango County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz045.txt
 station = ('koic', 0.0016991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz045.txt
 
@@ -46745,17 +46745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz045.txt
 centroid = (0.7441002, -1.3095659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz046.txt
 description = Otsego County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz046.txt
 station = ('koic', 0.0064224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz046.txt
 
@@ -46763,17 +46763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz046.txt
 centroid = (0.7433043, -1.2992597)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz047.txt
 description = Schoharie County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz047.txt
 station = ('kalb', 0.0087105)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz047.txt
 
@@ -46781,17 +46781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz047.txt
 centroid = (0.7468264, -1.2942681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz048.txt
 description = Western Schenectady County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz048.txt
 station = ('ksch', 0.0030380)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz048.txt
 
@@ -46799,17 +46799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz048.txt
 centroid = (0.7477357, -1.2911213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz049.txt
 description = Eastern Schenectady County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz049.txt
 station = ('ksch', 0.0005606)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz049.txt
 
@@ -46817,17 +46817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz049.txt
 centroid = (0.7494671, -1.2893934)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz050.txt
 description = Southern Saratoga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz050.txt
 station = ('ksch', 0.0017498)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz050.txt
 
@@ -46835,17 +46835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz050.txt
 centroid = (0.7428924, -1.2937253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz051.txt
 description = Western Albany County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz051.txt
 station = ('kalb', 0.0052794)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz051.txt
 
@@ -46853,17 +46853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz051.txt
 centroid = (0.7438995, -1.2894423)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz052.txt
 description = Eastern Albany County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz052.txt
 station = ('kalb', 0.0024516)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz052.txt
 
@@ -46871,17 +46871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz052.txt
 centroid = (0.7453481, -1.2848398)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz053.txt
 description = Western Rensselaer County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz053.txt
 station = ('kalb', 0.0024859)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz053.txt
 
@@ -46889,17 +46889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz053.txt
 centroid = (0.7455471, -1.2811729)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz054.txt
 description = Eastern Rensselaer County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz054.txt
 station = ('kaqw', 0.0030807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz054.txt
 
@@ -46907,17 +46907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz054.txt
 centroid = (0.7360106, -1.3317962)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz055.txt
 description = Tioga County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz055.txt
 station = ('kbgm', 0.0042088)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz055.txt
 
@@ -46925,17 +46925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz055.txt
 centroid = (0.7358343, -1.3233017)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz056.txt
 description = Broome County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz056.txt
 station = ('kbgm', 0.0022287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz056.txt
 
@@ -46943,17 +46943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz056.txt
 centroid = (0.7364975, -1.3084123)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz057.txt
 description = Delaware County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz057.txt
 station = ('koic', 0.0096446)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz057.txt
 
@@ -46961,17 +46961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz057.txt
 centroid = (0.7375238, -1.2956905)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz058.txt
 description = Western Greene County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz058.txt
 station = ('kalb', 0.0102830)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz058.txt
 
@@ -46979,17 +46979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz058.txt
 centroid = (0.7384837, -1.2900549)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz059.txt
 description = Eastern Greene County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz059.txt
 station = ('kalb', 0.0077856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz059.txt
 
@@ -46997,17 +46997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz059.txt
 centroid = (0.7373161, -1.2868836)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz060.txt
 description = Western Columbia County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz060.txt
 station = ('kpsf', 0.0066668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz060.txt
 
@@ -47015,17 +47015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz060.txt
 centroid = (0.7374854, -1.2834453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz061.txt
 description = Eastern Columbia County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz061.txt
 station = ('kpsf', 0.0045092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz061.txt
 
@@ -47033,17 +47033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz061.txt
 centroid = (0.7280885, -1.3049495)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz062.txt
 description = Sullivan County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz062.txt
 station = ('kmgj', 0.0074135)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz062.txt
 
@@ -47051,17 +47051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz062.txt
 centroid = (0.7316699, -1.2981672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz063.txt
 description = Western Ulster County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz063.txt
 station = ('kmgj', 0.0072187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz063.txt
 
@@ -47069,17 +47069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz063.txt
 centroid = (0.7301341, -1.2926188)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz064.txt
 description = Eastern Ulster County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz064.txt
 station = ('kpou', 0.0041962)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz064.txt
 
@@ -47087,17 +47087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz064.txt
 centroid = (0.7290520, -1.2888506)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz065.txt
 description = Western Dutchess County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz065.txt
 station = ('kpou', 0.0024625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz065.txt
 
@@ -47105,17 +47105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz065.txt
 centroid = (0.7288041, -1.2848992)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz066.txt
 description = Eastern Dutchess County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz066.txt
 station = ('kpou', 0.0040656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz066.txt
 
@@ -47123,17 +47123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz066.txt
 centroid = (0.7226047, -1.2968774)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz067.txt
 description = Orange County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz067.txt
 station = ('kmgj', 0.0020617)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz067.txt
 
@@ -47141,17 +47141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz067.txt
 centroid = (0.7230323, -1.2871716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz068.txt
 description = Putnam County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz068.txt
 station = ('kdxr', 0.0036389)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz068.txt
 
@@ -47159,17 +47159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz068.txt
 centroid = (0.7182536, -1.2919643)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz069.txt
 description = Rockland County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz069.txt
 station = ('khpn', 0.0045199)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz069.txt
 
@@ -47177,17 +47177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz069.txt
 centroid = (0.7194614, -1.2871349)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz070.txt
 description = Northern Westchester County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz070.txt
 station = ('khpn', 0.0027834)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz070.txt
 
@@ -47195,17 +47195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz070.txt
 centroid = (0.7152935, -1.2877022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz071.txt
 description = Southern Westchester County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz071.txt
 station = ('khpn', 0.0017955)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz071.txt
 
@@ -47213,17 +47213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz071.txt
 centroid = (0.7117208, -1.2909590)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz072.txt
 description = New York (Manhattan), New York County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz072.txt
 station = ('knyc', 0.0000826)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz072.txt
 
@@ -47231,17 +47231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz072.txt
 centroid = (0.7130124, -1.2892206)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz073.txt
 description = Bronx County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz073.txt
 station = ('klga', 0.0012283)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz073.txt
 
@@ -47249,17 +47249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz073.txt
 centroid = (0.7082581, -1.2942611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz074.txt
 description = Richmond (Staten Is.), Richmond County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz074.txt
 station = ('kldj', 0.0013452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz074.txt
 
@@ -47267,17 +47267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz074.txt
 centroid = (0.7093507, -1.2905418)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz075.txt
 description = Kings (Brooklyn), Kings County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz075.txt
 station = ('kjrb', 0.0013358)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz075.txt
 
@@ -47285,17 +47285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz075.txt
 centroid = (0.7134522, -1.2770836)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz078.txt
 description = Northwest Suffolk County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz078.txt
 station = ('kisp', 0.0016538)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz078.txt
 
@@ -47303,17 +47303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz078.txt
 centroid = (0.7154471, -1.2667722)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz079.txt
 description = Northeast Suffolk County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz079.txt
 station = ('kfok', 0.0025251)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz079.txt
 
@@ -47321,17 +47321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz079.txt
 centroid = (0.7112269, -1.2772808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz080.txt
 description = Southwest Suffolk County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz080.txt
 station = ('kisp', 0.0013965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz080.txt
 
@@ -47339,17 +47339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz080.txt
 centroid = (0.7140299, -1.2646516)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz081.txt
 description = Southeast Suffolk County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz081.txt
 station = ('kfok', 0.0023340)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz081.txt
 
@@ -47357,17 +47357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz081.txt
 centroid = (0.7533103, -1.2989229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz082.txt
 description = Northern Fulton County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz082.txt
 station = ('ksch', 0.0082816)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz082.txt
 
@@ -47375,17 +47375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz082.txt
 centroid = (0.7565444, -1.2869639)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz083.txt
 description = Southeast Warren County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz083.txt
 station = ('kgfl', 0.0015530)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz083.txt
 
@@ -47393,17 +47393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz083.txt
 centroid = (0.7532213, -1.2817000)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz084.txt
 description = Southern Washington County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz084.txt
 station = ('kgfl', 0.0038486)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz084.txt
 
@@ -47411,17 +47411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz084.txt
 centroid = (0.7439414, -1.3746353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz085.txt
 description = Southern Erie County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz085.txt
 station = ('kbuf', 0.0053981)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz085.txt
 
@@ -47429,17 +47429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz085.txt
 centroid = (0.7769735, -1.3143394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz087.txt
 description = Southwestern St. Lawrence County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz087.txt
 station = ('kogs', 0.0035184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz087.txt
 
@@ -47447,17 +47447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz087.txt
 centroid = (0.7111868, -1.2888174)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz176.txt
 description = Northern Queens County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz176.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz176.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz176.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz176.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz176.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz176.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz176.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz176.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz176.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz176.txt
 station = ('klga', 0.0008083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz176.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz176.txt
 
@@ -47465,17 +47465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz176.txt
 centroid = (0.7126790, -1.2845204)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz177.txt
 description = Northern Nassau County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz177.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz177.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz177.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz177.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz177.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz177.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz177.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz177.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz177.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz177.txt
 station = ('kfrg', 0.0029620)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz177.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz177.txt
 
@@ -47483,17 +47483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz177.txt
 centroid = (0.7097346, -1.2879134)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz178.txt
 description = Southern Queens County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz178.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz178.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz178.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz178.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz178.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz178.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz178.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz178.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz178.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz178.txt
 station = ('kjfk', 0.0006435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz178.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz178.txt
 
@@ -47501,17 +47501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz178.txt
 centroid = (0.7101797, -1.2842761)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ny/nyz179.txt
 description = Southern Nassau County, NY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyz179.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyz179.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ny/nyc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ny/nyc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ny/nyz179.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ny/nyz179.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyz179.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyz179.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyz179.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ny/nyc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ny/nyc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ny/nyc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ny/nyz179.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ny/nyz179.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz179.txt
 station = ('kfrg', 0.0023327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz179.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz179.txt
 
@@ -47519,17 +47519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz179.txt
 centroid = (0.7253641, -1.4763426)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz001.txt
 description = Williams County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz001.txt
 station = ('kdfi', 0.0044494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz001.txt
 
@@ -47537,17 +47537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz001.txt
 centroid = (0.7260884, -1.4683472)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz002.txt
 description = Fulton County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz002.txt
 station = ('kuse', 0.0001497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz002.txt
 
@@ -47555,17 +47555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz002.txt
 centroid = (0.7264060, -1.4601180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz003.txt
 description = Lucas County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz003.txt
 station = ('kduh', 0.0020221)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz003.txt
 
@@ -47573,17 +47573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz003.txt
 centroid = (0.7212399, -1.4746392)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz004.txt
 description = Defiance County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz004.txt
 station = ('kdfi', 0.0007680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz004.txt
 
@@ -47591,17 +47591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz004.txt
 centroid = (0.7214126, -1.4672669)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz005.txt
 description = Henry County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz005.txt
 station = ('kdfi', 0.0047852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz005.txt
 
@@ -47609,17 +47609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz005.txt
 centroid = (0.7218978, -1.4594967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz006.txt
 description = Wood County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz006.txt
 station = ('ktdz', 0.0040167)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz006.txt
 
@@ -47627,17 +47627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz006.txt
 centroid = (0.7249766, -1.4511837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz007.txt
 description = Ottawa County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz007.txt
 station = ('kpcw', 0.0036583)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz007.txt
 
@@ -47645,17 +47645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz007.txt
 centroid = (0.7218071, -1.4511540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz008.txt
 description = Sandusky County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz008.txt
 station = ('kpcw', 0.0045630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz008.txt
 
@@ -47663,17 +47663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz008.txt
 centroid = (0.7219293, -1.4419526)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz009.txt
 description = Erie County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz009.txt
 station = ('kpcw', 0.0042185)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz009.txt
 
@@ -47681,17 +47681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz009.txt
 centroid = (0.7207424, -1.4338089)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz010.txt
 description = Lorain County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz010.txt
 station = ('klpr', 0.0010403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz010.txt
 
@@ -47699,17 +47699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz010.txt
 centroid = (0.7229904, -1.4252132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz011.txt
 description = Cuyahoga County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz011.txt
 station = ('kbkl', 0.0019058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz011.txt
 
@@ -47717,17 +47717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz011.txt
 centroid = (0.7277464, -1.4178531)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz012.txt
 description = Lake County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz012.txt
 station = ('klnn', 0.0019216)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz012.txt
 
@@ -47735,17 +47735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz012.txt
 centroid = (0.7243029, -1.4168339)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz013.txt
 description = Geauga County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz013.txt
 station = ('kcgf', 0.0041504)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz013.txt
 
@@ -47753,17 +47753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz013.txt
 centroid = (0.7274463, -1.4092312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz014.txt
 description = Ashtabula Inland, Ashtabula County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz014.txt
 station = ('khzy', 0.0018951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz014.txt
 
@@ -47771,17 +47771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz014.txt
 centroid = (0.7176200, -1.4762012)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz015.txt
 description = Paulding County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz015.txt
 station = ('kdfi', 0.0042451)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz015.txt
 
@@ -47789,17 +47789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz015.txt
 centroid = (0.7159707, -1.4683752)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz016.txt
 description = Putnam County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz016.txt
 station = ('kowx', 0.0019850)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz016.txt
 
@@ -47807,17 +47807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz016.txt
 centroid = (0.7156182, -1.4602559)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz017.txt
 description = Hancock County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz017.txt
 station = ('kfdy', 0.0002577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz017.txt
 
@@ -47825,17 +47825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz017.txt
 centroid = (0.7177475, -1.4508521)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz018.txt
 description = Seneca County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz018.txt
 station = ('kfdy', 0.0073346)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz018.txt
 
@@ -47843,17 +47843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz018.txt
 centroid = (0.7181367, -1.4416140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz019.txt
 description = Huron County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz019.txt
 station = ('kmfd', 0.0058514)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz019.txt
 
@@ -47861,17 +47861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz019.txt
 centroid = (0.7176375, -1.4294194)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz020.txt
 description = Medina County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz020.txt
 station = ('kbjj', 0.0043849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz020.txt
 
@@ -47879,17 +47879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz020.txt
 centroid = (0.7177824, -1.4230036)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz021.txt
 description = Summit County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz021.txt
 station = ('kakr', 0.0018306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz021.txt
 
@@ -47897,17 +47897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz021.txt
 centroid = (0.7185102, -1.4171410)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz022.txt
 description = Portage County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz022.txt
 station = ('kpov', 0.0010404)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz022.txt
 
@@ -47915,17 +47915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz022.txt
 centroid = (0.7211247, -1.4095349)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz023.txt
 description = Trumbull County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz023.txt
 station = ('kyng', 0.0017015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz023.txt
 
@@ -47933,17 +47933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz023.txt
 centroid = (0.7130612, -1.4763059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz024.txt
 description = Van Wert County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz024.txt
 station = ('kvnw', 0.0003477)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz024.txt
 
@@ -47951,17 +47951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz024.txt
 centroid = (0.7115969, -1.4679214)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz025.txt
 description = Allen County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz025.txt
 station = ('kaoh', 0.0017157)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz025.txt
 
@@ -47969,17 +47969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz025.txt
 centroid = (0.7096771, -1.4601320)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz026.txt
 description = Hardin County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz026.txt
 station = ('ki95', 0.0009110)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz026.txt
 
@@ -47987,17 +47987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz026.txt
 centroid = (0.7128344, -1.4539361)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz027.txt
 description = Wyandot County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz027.txt
 station = ('kmnn', 0.0050407)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz027.txt
 
@@ -48005,17 +48005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz027.txt
 centroid = (0.7129827, -1.4472218)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz028.txt
 description = Crawford County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz028.txt
 station = ('kmnn', 0.0045267)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz028.txt
 
@@ -48023,17 +48023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz028.txt
 centroid = (0.7116528, -1.4405337)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz029.txt
 description = Richland County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz029.txt
 station = ('kmfd', 0.0007779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz029.txt
 
@@ -48041,17 +48041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz029.txt
 centroid = (0.7128989, -1.4358946)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz030.txt
 description = Ashland County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz030.txt
 station = ('kmfd', 0.0032886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz030.txt
 
@@ -48059,17 +48059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz030.txt
 centroid = (0.7125987, -1.4292205)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz031.txt
 description = Wayne County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz031.txt
 station = ('kbjj', 0.0006624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz031.txt
 
@@ -48077,17 +48077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz031.txt
 centroid = (0.7123352, -1.4201029)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz032.txt
 description = Stark County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz032.txt
 station = ('kcak', 0.0021108)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz032.txt
 
@@ -48095,17 +48095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz032.txt
 centroid = (0.7158398, -1.4097949)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz033.txt
 description = Mahoning County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz033.txt
 station = ('kyng', 0.0043496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz033.txt
 
@@ -48113,17 +48113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz033.txt
 centroid = (0.7075565, -1.4770599)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz034.txt
 description = Mercer County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz034.txt
 station = ('kaxv', 0.0044587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz034.txt
 
@@ -48131,17 +48131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz034.txt
 centroid = (0.7079213, -1.4699460)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz035.txt
 description = Auglaize County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz035.txt
 station = ('kaxv', 0.0015610)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz035.txt
 
@@ -48149,17 +48149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz035.txt
 centroid = (0.7083820, -1.4514315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz036.txt
 description = Marion County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz036.txt
 station = ('kmnn', 0.0013498)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz036.txt
 
@@ -48167,17 +48167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz036.txt
 centroid = (0.7072772, -1.4450296)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz037.txt
 description = Morrow County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz037.txt
 station = ('kmnn', 0.0039590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz037.txt
 
@@ -48185,17 +48185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz037.txt
 centroid = (0.7079265, -1.4299378)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz038.txt
 description = Holmes County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz038.txt
 station = ('k10g', 0.0005342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz038.txt
 
@@ -48203,17 +48203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz038.txt
 centroid = (0.7058286, -1.4219861)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz039.txt
 description = Tuscarawas County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz039.txt
 station = ('kphd', 0.0008811)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz039.txt
 
@@ -48221,17 +48221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz039.txt
 centroid = (0.7082476, -1.4152823)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz040.txt
 description = Carroll County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz040.txt
 station = ('kphd', 0.0047647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz040.txt
 
@@ -48239,17 +48239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz040.txt
 centroid = (0.7115463, -1.4098333)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz041.txt
 description = Columbiana County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz041.txt
 station = ('kbvi', 0.0049901)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz041.txt
 
@@ -48257,17 +48257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz041.txt
 centroid = (0.7004582, -1.4768854)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz042.txt
 description = Darke County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz042.txt
 station = ('kves', 0.0017025)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz042.txt
 
@@ -48275,17 +48275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz042.txt
 centroid = (0.7039192, -1.4696510)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz043.txt
 description = Shelby County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz043.txt
 station = ('kaxv', 0.0030884)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz043.txt
 
@@ -48293,17 +48293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz043.txt
 centroid = (0.7049123, -1.4619890)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz044.txt
 description = Logan County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz044.txt
 station = ('kedj', 0.0007617)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz044.txt
 
@@ -48311,17 +48311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz044.txt
 centroid = (0.7033590, -1.4551072)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz045.txt
 description = Union County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz045.txt
 station = ('kmrt', 0.0013321)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz045.txt
 
@@ -48329,17 +48329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz045.txt
 centroid = (0.7029924, -1.4487140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz046.txt
 description = Delaware County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz046.txt
 station = ('kdlz', 0.0014595)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz046.txt
 
@@ -48347,17 +48347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz046.txt
 centroid = (0.7050921, -1.4385283)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz047.txt
 description = Knox County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz047.txt
 station = ('k4i3', 0.0018287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz047.txt
 
@@ -48365,17 +48365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz047.txt
 centroid = (0.7033956, -1.4297737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz048.txt
 description = Coshocton County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz048.txt
 station = ('k10g', 0.0041373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz048.txt
 
@@ -48383,17 +48383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz048.txt
 centroid = (0.7032595, -1.4153067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz049.txt
 description = Harrison County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz049.txt
 station = ('k2g2', 0.0053270)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz049.txt
 
@@ -48401,17 +48401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz049.txt
 centroid = (0.7048512, -1.4095454)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz050.txt
 description = Jefferson County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz050.txt
 station = ('k2g2', 0.0009248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz050.txt
 
@@ -48419,17 +48419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz050.txt
 centroid = (0.6990637, -1.4700716)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz051.txt
 description = Miami County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz051.txt
 station = ('kday', 0.0026823)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz051.txt
 
@@ -48437,17 +48437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz051.txt
 centroid = (0.7005368, -1.4620553)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz052.txt
 description = Champaign County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz052.txt
 station = ('ki74', 0.0002344)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz052.txt
 
@@ -48455,17 +48455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz052.txt
 centroid = (0.6966796, -1.4622979)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz053.txt
 description = Clark County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz053.txt
 station = ('ksgh', 0.0015351)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz053.txt
 
@@ -48473,17 +48473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz053.txt
 centroid = (0.6962851, -1.4556029)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz054.txt
 description = Madison County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz054.txt
 station = ('kuyf', 0.0010689)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz054.txt
 
@@ -48491,17 +48491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz054.txt
 centroid = (0.6976011, -1.4487856)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz055.txt
 description = Franklin County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz055.txt
 station = ('kcmh', 0.0017661)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz055.txt
 
@@ -48509,17 +48509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz055.txt
 centroid = (0.6997339, -1.4396087)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz056.txt
 description = Licking County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz056.txt
 station = ('kvta', 0.0013305)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz056.txt
 
@@ -48527,17 +48527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz056.txt
 centroid = (0.6975278, -1.4301996)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz057.txt
 description = Muskingum County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz057.txt
 station = ('kzzv', 0.0006520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz057.txt
 
@@ -48545,17 +48545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz057.txt
 centroid = (0.6990410, -1.4223421)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz058.txt
 description = Guernsey County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz058.txt
 station = ('kcdi', 0.0017475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz058.txt
 
@@ -48563,17 +48563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz058.txt
 centroid = (0.6984075, -1.4135160)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz059.txt
 description = Belmont County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz059.txt
 station = ('khlg', 0.0052308)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz059.txt
 
@@ -48581,17 +48581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz059.txt
 centroid = (0.6936218, -1.4773881)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz060.txt
 description = Preble County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz060.txt
 station = ('krid', 0.0026268)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz060.txt
 
@@ -48599,17 +48599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz060.txt
 centroid = (0.6938469, -1.4711485)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz061.txt
 description = Montgomery County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz061.txt
 station = ('kday', 0.0027260)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz061.txt
 
@@ -48617,17 +48617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz061.txt
 centroid = (0.6927474, -1.4641532)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz062.txt
 description = Greene County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz062.txt
 station = ('kgdk', 0.0013805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz062.txt
 
@@ -48635,17 +48635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz062.txt
 centroid = (0.6904505, -1.4565837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz063.txt
 description = Fayette County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz063.txt
 station = ('ki23', 0.0005128)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz063.txt
 
@@ -48653,17 +48653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz063.txt
 centroid = (0.6918834, -1.4490474)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz064.txt
 description = Pickaway County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz064.txt
 station = ('klck', 0.0032839)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz064.txt
 
@@ -48671,17 +48671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz064.txt
 centroid = (0.6937963, -1.4421743)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz065.txt
 description = Fairfield County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz065.txt
 station = ('klhq', 0.0004861)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz065.txt
 
@@ -48689,17 +48689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz065.txt
 centroid = (0.6935432, -1.4352907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz066.txt
 description = Perry County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz066.txt
 station = ('kvta', 0.0057745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz066.txt
 
@@ -48707,17 +48707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz066.txt
 centroid = (0.6915047, -1.4285991)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz067.txt
 description = Morgan County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz067.txt
 station = ('kzzv', 0.0057892)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz067.txt
 
@@ -48725,17 +48725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz067.txt
 centroid = (0.6940476, -1.4216667)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz068.txt
 description = Noble County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz068.txt
 station = ('kcdi', 0.0039976)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz068.txt
 
@@ -48743,17 +48743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz068.txt
 centroid = (0.6933739, -1.4151636)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz069.txt
 description = Monroe County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz069.txt
 station = ('kcdi', 0.0079127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz069.txt
 
@@ -48761,17 +48761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz069.txt
 centroid = (0.6883334, -1.4761209)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz070.txt
 description = Butler County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz070.txt
 station = ('khao', 0.0014852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz070.txt
 
@@ -48779,17 +48779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz070.txt
 centroid = (0.6881432, -1.4689878)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz071.txt
 description = Warren County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz071.txt
 station = ('ki68', 0.0013463)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz071.txt
 
@@ -48797,17 +48797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz071.txt
 centroid = (0.6879215, -1.4627325)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz072.txt
 description = Clinton County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz072.txt
 station = ('kiln', 0.0004654)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz072.txt
 
@@ -48815,17 +48815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz072.txt
 centroid = (0.6865706, -1.4496181)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz073.txt
 description = Ross County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz073.txt
 station = ('krzt', 0.0018515)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz073.txt
 
@@ -48833,17 +48833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz073.txt
 centroid = (0.6893527, -1.4395319)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz074.txt
 description = Hocking County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz074.txt
 station = ('klhq', 0.0050849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz074.txt
 
@@ -48851,17 +48851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz074.txt
 centroid = (0.6865026, -1.4319589)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz075.txt
 description = Athens County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz075.txt
 station = ('kuni', 0.0032747)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz075.txt
 
@@ -48869,17 +48869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz075.txt
 centroid = (0.6886249, -1.4223613)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz076.txt
 description = Washington County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz076.txt
 station = ('kpkb', 0.0022147)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz076.txt
 
@@ -48887,17 +48887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz076.txt
 centroid = (0.6840888, -1.4755467)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz077.txt
 description = Hamilton County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz077.txt
 station = ('kluk', 0.0023828)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz077.txt
 
@@ -48905,17 +48905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz077.txt
 centroid = (0.6815092, -1.4687330)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz078.txt
 description = Clermont County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz078.txt
 station = ('ki69', 0.0009522)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz078.txt
 
@@ -48923,17 +48923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz078.txt
 centroid = (0.6795335, -1.4637727)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz079.txt
 description = Brown County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz079.txt
 station = ('ki69', 0.0052779)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz079.txt
 
@@ -48941,17 +48941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz079.txt
 centroid = (0.6839038, -1.4591110)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz080.txt
 description = Highland County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz080.txt
 station = ('kiln', 0.0049885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz080.txt
 
@@ -48959,17 +48959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz080.txt
 centroid = (0.6779854, -1.4568612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz081.txt
 description = Adams County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz081.txt
 station = ('kfgx', 0.0064654)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz081.txt
 
@@ -48977,17 +48977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz081.txt
 centroid = (0.6820293, -1.4497892)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz082.txt
 description = Pike County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz082.txt
 station = ('kpmh', 0.0050961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz082.txt
 
@@ -48995,17 +48995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz082.txt
 centroid = (0.6810222, -1.4419631)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz083.txt
 description = Jackson County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz083.txt
 station = ('kjro', 0.0008652)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz083.txt
 
@@ -49013,17 +49013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz083.txt
 centroid = (0.6850592, -1.4396418)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz084.txt
 description = Vinton County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz084.txt
 station = ('kuni', 0.0035266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz084.txt
 
@@ -49031,17 +49031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz084.txt
 centroid = (0.6821113, -1.4315697)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz085.txt
 description = Meigs County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz085.txt
 station = ('kuni', 0.0035982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz085.txt
 
@@ -49049,17 +49049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz085.txt
 centroid = (0.6776206, -1.4367009)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz086.txt
 description = Gallia County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz086.txt
 station = ('kjro', 0.0044763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz086.txt
 
@@ -49067,17 +49067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz086.txt
 centroid = (0.6736709, -1.4405389)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz087.txt
 description = Lawrence County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz087.txt
 station = ('kdwu', 0.0028507)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz087.txt
 
@@ -49085,17 +49085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz087.txt
 centroid = (0.6772576, -1.4484976)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz088.txt
 description = Scioto County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz088.txt
 station = ('kpmh', 0.0020785)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz088.txt
 
@@ -49103,17 +49103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz088.txt
 centroid = (0.7308758, -1.4099066)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/oh/ohz089.txt
 description = Ashtabula Lakeshore, Ashtabula County, OH, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/oh/ohc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/oh/ohc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/oh/ohz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/oh/ohz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/oh/ohc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/oh/ohc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/oh/ohc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/oh/ohz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/oh/ohz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz089.txt
 station = ('khzy', 0.0019366)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz089.txt
 
@@ -49121,17 +49121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz089.txt
 centroid = (0.6413788, -1.7892732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz001.txt
 description = Cimarron County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz001.txt
 station = ('kspd', 0.0094392)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz001.txt
 
@@ -49139,17 +49139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz001.txt
 centroid = (0.6413718, -1.7713347)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz002.txt
 description = Texas County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz002.txt
 station = ('kguy', 0.0011356)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz002.txt
 
@@ -49157,17 +49157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz002.txt
 centroid = (0.6414033, -1.7536492)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz003.txt
 description = Beaver County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz003.txt
 station = ('kpyx', 0.0070845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz003.txt
 
@@ -49175,17 +49175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz003.txt
 centroid = (0.6420839, -1.7395225)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz004.txt
 description = Harper County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz004.txt
 station = ('kwwr', 0.0064765)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz004.txt
 
@@ -49193,17 +49193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz004.txt
 centroid = (0.6417035, -1.7255215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz005.txt
 description = Woods County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz005.txt
 station = ('kavk', 0.0027298)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz005.txt
 
@@ -49211,17 +49211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz005.txt
 centroid = (0.6410769, -1.7160775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz006.txt
 description = Alfalfa County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz006.txt
 station = ('kavk', 0.0048939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz006.txt
 
@@ -49229,17 +49229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz006.txt
 centroid = (0.6422148, -1.7066894)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz007.txt
 description = Grant County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz007.txt
 station = ('kbkn', 0.0061674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz007.txt
 
@@ -49247,17 +49247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz007.txt
 centroid = (0.6425953, -1.6954809)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz008.txt
 description = Kay County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz008.txt
 station = ('kpnc', 0.0016001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz008.txt
 
@@ -49265,17 +49265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz008.txt
 centroid = (0.6321286, -1.7410462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz009.txt
 description = Ellis County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz009.txt
 station = ('kgag', 0.0014360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz009.txt
 
@@ -49283,17 +49283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz009.txt
 centroid = (0.6356960, -1.7325011)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz010.txt
 description = Woodward County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz010.txt
 station = ('kwwr', 0.0036047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz010.txt
 
@@ -49301,17 +49301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz010.txt
 centroid = (0.6337570, -1.7197776)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz011.txt
 description = Major County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz011.txt
 station = ('kjwg', 0.0079668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz011.txt
 
@@ -49319,17 +49319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz011.txt
 centroid = (0.6349333, -1.7066318)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz012.txt
 description = Garfield County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz012.txt
 station = ('kwdg', 0.0001168)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz012.txt
 
@@ -49337,17 +49337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz012.txt
 centroid = (0.6351009, -1.6969941)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz013.txt
 description = Noble County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz013.txt
 station = ('kswo', 0.0043929)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz013.txt
 
@@ -49355,17 +49355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz013.txt
 centroid = (0.6228783, -1.7400182)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz014.txt
 description = Roger Mills County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz014.txt
 station = ('kelk', 0.0062057)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz014.txt
 
@@ -49373,17 +49373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz014.txt
 centroid = (0.6281039, -1.7280156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz015.txt
 description = Dewey County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz015.txt
 station = ('kclk', 0.0079431)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz015.txt
 
@@ -49391,17 +49391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz015.txt
 centroid = (0.6220161, -1.7279021)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz016.txt
 description = Custer County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz016.txt
 station = ('kclk', 0.0020954)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz016.txt
 
@@ -49409,17 +49409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz016.txt
 centroid = (0.6261404, -1.7179887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz017.txt
 description = Blaine County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz017.txt
 station = ('kjwg', 0.0002560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz017.txt
 
@@ -49427,17 +49427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz017.txt
 centroid = (0.6273656, -1.7094121)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz018.txt
 description = Kingfisher County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz018.txt
 station = ('kend', 0.0067802)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz018.txt
 
@@ -49445,17 +49445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz018.txt
 centroid = (0.6269118, -1.7007064)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz019.txt
 description = Logan County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz019.txt
 station = ('kgok', 0.0012685)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz019.txt
 
@@ -49463,17 +49463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz019.txt
 centroid = (0.6296677, -1.6925453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz020.txt
 description = Payne County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz020.txt
 station = ('kswo', 0.0021761)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz020.txt
 
@@ -49481,17 +49481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz020.txt
 centroid = (0.6155549, -1.7397791)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz021.txt
 description = Beckham County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz021.txt
 station = ('kelk', 0.0049777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz021.txt
 
@@ -49499,17 +49499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz021.txt
 centroid = (0.6159337, -1.7277416)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz022.txt
 description = Washita County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz022.txt
 station = ('kcsm', 0.0031354)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz022.txt
 
@@ -49517,17 +49517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz022.txt
 centroid = (0.6139091, -1.7169694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz023.txt
 description = Caddo County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz023.txt
 station = ('kchk', 0.0059954)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz023.txt
 
@@ -49535,17 +49535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz023.txt
 centroid = (0.6203336, -1.7101172)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz024.txt
 description = Canadian County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz024.txt
 station = ('krqo', 0.0012649)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz024.txt
 
@@ -49553,17 +49553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz024.txt
 centroid = (0.6204907, -1.7000764)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz025.txt
 description = Oklahoma County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz025.txt
 station = ('ktik', 0.0023776)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz025.txt
 
@@ -49571,17 +49571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz025.txt
 centroid = (0.6231349, -1.6908907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz026.txt
 description = Lincoln County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz026.txt
 station = ('kcqb', 0.0009332)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz026.txt
 
@@ -49589,17 +49589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz026.txt
 centroid = (0.6111619, -1.7083998)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz027.txt
 description = Grady County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz027.txt
 station = ('kchk', 0.0018109)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz027.txt
 
@@ -49607,17 +49607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz027.txt
 centroid = (0.6110171, -1.7007117)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz028.txt
 description = McClain County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz028.txt
 station = ('koun', 0.0036309)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz028.txt
 
@@ -49625,17 +49625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz028.txt
 centroid = (0.6144187, -1.6986783)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz029.txt
 description = Cleveland County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz029.txt
 station = ('koun', 0.0017673)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz029.txt
 
@@ -49643,17 +49643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz029.txt
 centroid = (0.6144746, -1.6920670)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz030.txt
 description = Pottawatomie County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz030.txt
 station = ('ksnl', 0.0026265)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz030.txt
 
@@ -49661,17 +49661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz030.txt
 centroid = (0.6137887, -1.6862603)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz031.txt
 description = Seminole County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz031.txt
 station = ('ksre', 0.0020497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz031.txt
 
@@ -49679,17 +49679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz031.txt
 centroid = (0.6117100, -1.6798829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz032.txt
 description = Hughes County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz032.txt
 station = ('kadh', 0.0073794)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz032.txt
 
@@ -49697,17 +49697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz032.txt
 centroid = (0.6063989, -1.7426467)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz033.txt
 description = Harmon County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz033.txt
 station = ('kaxs', 0.0073341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz033.txt
 
@@ -49715,17 +49715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz033.txt
 centroid = (0.6097430, -1.7376655)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz034.txt
 description = Greer County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz034.txt
 station = ('kaxs', 0.0052267)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz034.txt
 
@@ -49733,17 +49733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz034.txt
 centroid = (0.6094044, -1.7275409)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz035.txt
 description = Kiowa County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz035.txt
 station = ('khbr', 0.0015326)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz035.txt
 
@@ -49751,17 +49751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz035.txt
 centroid = (0.6036745, -1.7351138)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz036.txt
 description = Jackson County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz036.txt
 station = ('kaxs', 0.0022222)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz036.txt
 
@@ -49769,17 +49769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz036.txt
 centroid = (0.5999185, -1.7265530)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz037.txt
 description = Tillman County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz037.txt
 station = ('kfdr', 0.0009403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz037.txt
 
@@ -49787,17 +49787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz037.txt
 centroid = (0.6049678, -1.7186554)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz038.txt
 description = Comanche County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz038.txt
 station = ('kfsi', 0.0014950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz038.txt
 
@@ -49805,17 +49805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz038.txt
 centroid = (0.6018873, -1.7078291)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz039.txt
 description = Stephens County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz039.txt
 station = ('kduc', 0.0015836)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz039.txt
 
@@ -49823,17 +49823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz039.txt
 centroid = (0.6057078, -1.6983677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz040.txt
 description = Garvin County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz040.txt
 station = ('kpvj', 0.0012388)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz040.txt
 
@@ -49841,17 +49841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz040.txt
 centroid = (0.6018297, -1.6941545)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz041.txt
 description = Murray County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz041.txt
 station = ('kadm', 0.0032053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz041.txt
 
@@ -49859,17 +49859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz041.txt
 centroid = (0.6061197, -1.6874611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz042.txt
 description = Pontotoc County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz042.txt
 station = ('kadh', 0.0013455)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz042.txt
 
@@ -49877,17 +49877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz042.txt
 centroid = (0.6036780, -1.6807154)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz043.txt
 description = Coal County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz043.txt
 station = ('kadh', 0.0065550)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz043.txt
 
@@ -49895,17 +49895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz043.txt
 centroid = (0.5984769, -1.7169170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz044.txt
 description = Cotton County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz044.txt
 station = ('klaw', 0.0048677)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz044.txt
 
@@ -49913,17 +49913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz044.txt
 centroid = (0.5953510, -1.7075568)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz045.txt
 description = Jefferson County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz045.txt
 station = ('kduc', 0.0065290)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz045.txt
 
@@ -49931,17 +49931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz045.txt
 centroid = (0.5977910, -1.6979575)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz046.txt
 description = Carter County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz046.txt
 station = ('k1f0', 0.0029747)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz046.txt
 
@@ -49949,17 +49949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz046.txt
 centroid = (0.5989359, -1.6870457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz047.txt
 description = Johnston County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz047.txt
 station = ('kadm', 0.0051786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz047.txt
 
@@ -49967,17 +49967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz047.txt
 centroid = (0.5999342, -1.6761758)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz048.txt
 description = Atoka County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz048.txt
 station = ('kdua', 0.0091237)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz048.txt
 
@@ -49985,17 +49985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz048.txt
 centroid = (0.6006760, -1.6646217)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz049.txt
 description = Pushmataha County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz049.txt
 station = ('khhw', 0.0070751)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz049.txt
 
@@ -50003,17 +50003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz049.txt
 centroid = (0.5925375, -1.6972315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz050.txt
 description = Love County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz050.txt
 station = ('k1f0', 0.0038632)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz050.txt
 
@@ -50021,17 +50021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz050.txt
 centroid = (0.5938396, -1.6889394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz051.txt
 description = Marshall County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz051.txt
 station = ('k1f0', 0.0055373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz051.txt
 
@@ -50039,17 +50039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz051.txt
 centroid = (0.5927540, -1.6800539)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz052.txt
 description = Bryan County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz052.txt
 station = ('kdua', 0.0019777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz052.txt
 
@@ -50057,17 +50057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz052.txt
 centroid = (0.5938745, -1.6676988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz053.txt
 description = Choctaw County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz053.txt
 station = ('khhw', 0.0002068)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz053.txt
 
@@ -50075,17 +50075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz053.txt
 centroid = (0.6393001, -1.6824695)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz054.txt
 description = Osage County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz054.txt
 station = ('kbvo', 0.0058560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz054.txt
 
@@ -50093,17 +50093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz054.txt
 centroid = (0.6408011, -1.6738475)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz055.txt
 description = Washington County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz055.txt
 station = ('kbvo', 0.0018090)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz055.txt
 
@@ -50111,17 +50111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz055.txt
 centroid = (0.6422550, -1.6688402)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz056.txt
 description = Nowata County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz056.txt
 station = ('kcfv', 0.0050216)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz056.txt
 
@@ -50129,17 +50129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz056.txt
 centroid = (0.6416127, -1.6617018)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz057.txt
 description = Craig County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz057.txt
 station = ('kmio', 0.0051705)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz057.txt
 
@@ -50147,17 +50147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz057.txt
 centroid = (0.6429008, -1.6547554)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz058.txt
 description = Ottawa County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz058.txt
 station = ('kmio', 0.0016764)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz058.txt
 
@@ -50165,17 +50165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz058.txt
 centroid = (0.6338495, -1.6877212)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz059.txt
 description = Pawnee County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz059.txt
 station = ('kcuh', 0.0064916)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz059.txt
 
@@ -50183,17 +50183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz059.txt
 centroid = (0.6304321, -1.6744951)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz060.txt
 description = Tulsa County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz060.txt
 station = ('krvs', 0.0013741)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz060.txt
 
@@ -50201,17 +50201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz060.txt
 centroid = (0.6348042, -1.6686116)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz061.txt
 description = Rogers County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz061.txt
 station = ('kgcm', 0.0022105)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz061.txt
 
@@ -50219,17 +50219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz061.txt
 centroid = (0.6335859, -1.6620928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz062.txt
 description = Mayes County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz062.txt
 station = ('kgcm', 0.0035024)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz062.txt
 
@@ -50237,17 +50237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz062.txt
 centroid = (0.6354430, -1.6546193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz063.txt
 description = Delaware County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz063.txt
 station = ('kgmj', 0.0035552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz063.txt
 
@@ -50255,17 +50255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz063.txt
 centroid = (0.6266203, -1.6819895)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz064.txt
 description = Creek County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz064.txt
 station = ('kowp', 0.0056743)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz064.txt
 
@@ -50273,17 +50273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz064.txt
 centroid = (0.6189897, -1.6811500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz065.txt
 description = Okfuskee County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz065.txt
 station = ('ksre', 0.0060203)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz065.txt
 
@@ -50291,17 +50291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz065.txt
 centroid = (0.6221523, -1.6748930)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz066.txt
 description = Okmulgee County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz066.txt
 station = ('kokm', 0.0004341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz066.txt
 
@@ -50309,17 +50309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz066.txt
 centroid = (0.6276361, -1.6671594)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz067.txt
 description = Wagoner County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz067.txt
 station = ('kmko', 0.0058505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz067.txt
 
@@ -50327,17 +50327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz067.txt
 centroid = (0.6266884, -1.6580576)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz068.txt
 description = Cherokee County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz068.txt
 station = ('ktqh', 0.0003948)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz068.txt
 
@@ -50345,17 +50345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz068.txt
 centroid = (0.6262922, -1.6521060)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz069.txt
 description = Adair County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz069.txt
 station = ('ktqh', 0.0049504)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz069.txt
 
@@ -50363,17 +50363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz069.txt
 centroid = (0.6216182, -1.6646846)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz070.txt
 description = Muskogee County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz070.txt
 station = ('kmko', 0.0006186)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz070.txt
 
@@ -50381,17 +50381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz070.txt
 centroid = (0.6173875, -1.6697006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz071.txt
 description = McIntosh County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz071.txt
 station = ('kmko', 0.0064371)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz071.txt
 
@@ -50399,17 +50399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz071.txt
 centroid = (0.6195099, -1.6537850)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz072.txt
 description = Sequoyah County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz072.txt
 station = ('kjsv', 0.0012089)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz072.txt
 
@@ -50417,17 +50417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz072.txt
 centroid = (0.6095370, -1.6711248)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz073.txt
 description = Pittsburg County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz073.txt
 station = ('kmlc', 0.0008668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz073.txt
 
@@ -50435,17 +50435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz073.txt
 centroid = (0.6147887, -1.6600978)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz074.txt
 description = Haskell County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz074.txt
 station = ('kgzl', 0.0011680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz074.txt
 
@@ -50453,17 +50453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz074.txt
 centroid = (0.6087028, -1.6624331)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz075.txt
 description = Latimer County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz075.txt
 station = ('kgzl', 0.0075468)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz075.txt
 
@@ -50471,17 +50471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz075.txt
 centroid = (0.6091217, -1.6528879)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz076.txt
 description = Le Flore County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz076.txt
 station = ('krkr', 0.0024251)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz076.txt
 
@@ -50489,17 +50489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz076.txt
 centroid = (0.5954208, -1.6540695)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ok/okz077.txt
 description = McCurtain County, OK, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ok/okc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ok/okc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ok/okz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ok/okz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ok/okc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ok/okc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ok/okc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ok/okz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ok/okz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz077.txt
 station = ('k4o4', 0.0038129)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz077.txt
 
@@ -50507,17 +50507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz077.txt
 centroid = (0.7536506, -2.1669432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz021.txt
 description = South Central Oregon Coast, Douglas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz021.txt
 station = ('koth', 0.0042805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz021.txt
 
@@ -50525,17 +50525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz021.txt
 centroid = (0.7390073, -2.1694617)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz022.txt
 description = Curry County Coast, Curry County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz022.txt
 station = ('k4s1', 0.0020169)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz022.txt
 
@@ -50543,17 +50543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz022.txt
 centroid = (0.7550347, -2.1546125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz023.txt
 description = Central Douglas County, Douglas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz023.txt
 station = ('krbg', 0.0013580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz023.txt
 
@@ -50561,17 +50561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz023.txt
 centroid = (0.7398486, -2.1597455)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz024.txt
 description = Eastern Curry County and Josephine County, Josephine County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz024.txt
 station = ('k3s8', 0.0050281)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz024.txt
 
@@ -50579,17 +50579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz024.txt
 centroid = (0.7546524, -2.1416761)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz025.txt
 description = Eastern Douglas County Foothills, Douglas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz025.txt
 station = ('krbg', 0.0081510)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz025.txt
 
@@ -50597,17 +50597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz025.txt
 centroid = (0.7411576, -2.1440619)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz026.txt
 description = Jackson County, Jackson County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz026.txt
 station = ('kmfr', 0.0015089)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz026.txt
 
@@ -50615,17 +50615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz026.txt
 centroid = (0.7537641, -2.1320384)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz027.txt
 description = South Central Oregon Cascades, Klamath County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz027.txt
 station = ('ks21', 0.0150819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz027.txt
 
@@ -50633,17 +50633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz027.txt
 centroid = (0.7388659, -2.1371679)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz028.txt
 description = Siskiyou Mountains and Southern Oregon Cascades, Klamath County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz028.txt
 station = ('kmfr', 0.0056460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz028.txt
 
@@ -50651,17 +50651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz028.txt
 centroid = (0.7391557, -2.1244532)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz029.txt
 description = Klamath Basin, Klamath County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz029.txt
 station = ('klmt', 0.0035001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz029.txt
 
@@ -50669,17 +50669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz029.txt
 centroid = (0.7466501, -2.1161698)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz030.txt
 description = Northern and Eastern Klamath County and Western Lake County, Lake County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz030.txt
 station = ('klmt', 0.0125434)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz030.txt
 
@@ -50687,17 +50687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz030.txt
 centroid = (0.7471842, -2.0987706)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz031.txt
 description = Central and Eastern Lake County, Lake County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz031.txt
 station = ('klkv', 0.0114001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz031.txt
 
@@ -50705,17 +50705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz031.txt
 centroid = (0.7966730, -2.1040154)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz041.txt
 description = East Columbia River Gorge, Wasco County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz041.txt
 station = ('kdls', 0.0075289)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz041.txt
 
@@ -50723,17 +50723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz041.txt
 centroid = (0.7984061, -2.0851152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz044.txt
 description = Lower Columbia Basin of Oregon, Umatilla County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz044.txt
 station = ('khri', 0.0028952)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz044.txt
 
@@ -50741,17 +50741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz044.txt
 centroid = (0.7919205, -2.0586420)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz049.txt
 description = Grande Ronde Valley, Union County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz049.txt
 station = ('klgd', 0.0016857)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz049.txt
 
@@ -50759,17 +50759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz049.txt
 centroid = (0.7938229, -2.0452379)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz050.txt
 description = Wallowa County, Wallowa County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz050.txt
 station = ('kbke', 0.0137539)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz050.txt
 
@@ -50777,17 +50777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz050.txt
 centroid = (0.7516086, -2.0763816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz061.txt
 description = Harney County, Harney County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz061.txt
 station = ('kbno', 0.0093577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz061.txt
 
@@ -50795,17 +50795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz061.txt
 centroid = (0.7803227, -2.0538214)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz062.txt
 description = Baker County, Baker County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz062.txt
 station = ('kbke', 0.0027860)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz062.txt
 
@@ -50813,17 +50813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz062.txt
 centroid = (0.7526383, -2.0535614)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz063.txt
 description = Malheur County, Malheur County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz063.txt
 station = ('kreo', 0.0097817)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz063.txt
 
@@ -50831,17 +50831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz063.txt
 centroid = (0.7683515, -2.0452379)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz064.txt
 description = Oregon Lower Treasure Valley, Malheur County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz064.txt
 station = ('kono', 0.0020971)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz064.txt
 
@@ -50849,17 +50849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz064.txt
 centroid = (0.8043315, -2.1615082)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz101.txt
 description = Clatsop County Coast, Clatsop County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz101.txt
 station = ('kast', 0.0012275)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz101.txt
 
@@ -50867,17 +50867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz101.txt
 centroid = (0.7920531, -2.1623495)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz102.txt
 description = Tillamook County Coast, Tillamook County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz102.txt
 station = ('ktmk', 0.0011679)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz102.txt
 
@@ -50885,17 +50885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz102.txt
 centroid = (0.7769944, -2.1645067)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz103.txt
 description = Central Coast of Oregon, Lane County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz103.txt
 station = ('konp', 0.0011925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz103.txt
 
@@ -50903,17 +50903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz103.txt
 centroid = (0.7992159, -2.1551919)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz104.txt
 description = North Oregon Coast Range Lowlands, Yamhill County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz104.txt
 station = ('ktmk', 0.0076675)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz104.txt
 
@@ -50921,17 +50921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz104.txt
 centroid = (0.7745492, -2.1595849)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz105.txt
 description = Central Oregon Coast Range Lowlands, Polk County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz105.txt
 station = ('konp', 0.0053469)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz105.txt
 
@@ -50939,17 +50939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz105.txt
 centroid = (0.7966625, -2.1550191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz106.txt
 description = North Oregon Coast Range, Yamhill County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz106.txt
 station = ('ktmk', 0.0057494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz106.txt
 
@@ -50957,17 +50957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz106.txt
 centroid = (0.7753678, -2.1576703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz107.txt
 description = Central Oregon Coast Range, Polk County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz107.txt
 station = ('kcvo', 0.0044560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz107.txt
 
@@ -50975,17 +50975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz107.txt
 centroid = (0.8021376, -2.1463483)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz108.txt
 description = Lower Columbia River, Columbia County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz108.txt
 station = ('kkls', 0.0029028)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz108.txt
 
@@ -50993,17 +50993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz108.txt
 centroid = (0.7943761, -2.1467724)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz109.txt
 description = Tualatin Valley, Clackamas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz109.txt
 station = ('khio', 0.0008803)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz109.txt
 
@@ -51011,17 +51011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz109.txt
 centroid = (0.7934249, -2.1451179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz110.txt
 description = West Hills and Chehalem Mountains, Yamhill County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz110.txt
 station = ('khio', 0.0016613)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz110.txt
 
@@ -51029,17 +51029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz110.txt
 centroid = (0.7936326, -2.1400477)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz111.txt
 description = Inner Portland Metro, Clackamas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz111.txt
 station = ('kpdx', 0.0019561)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz111.txt
 
@@ -51047,17 +51047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz111.txt
 centroid = (0.7944494, -2.1364034)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz112.txt
 description = East Portland Metro, Multnomah County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz112.txt
 station = ('kttd', 0.0005609)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz112.txt
 
@@ -51065,17 +51065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz112.txt
 centroid = (0.7918646, -2.1357542)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz113.txt
 description = Outer Southeast Portland Metro, Clackamas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz113.txt
 station = ('kttd', 0.0031852)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz113.txt
 
@@ -51083,17 +51083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz113.txt
 centroid = (0.7869114, -2.1509281)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz114.txt
 description = West Central Willamette Valley, Polk County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz114.txt
 station = ('kmmv', 0.0023676)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz114.txt
 
@@ -51101,17 +51101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz114.txt
 centroid = (0.7861329, -2.1437059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz115.txt
 description = East Central Willamette Valley, Clackamas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz115.txt
 station = ('ksle', 0.0032870)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz115.txt
 
@@ -51119,17 +51119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz115.txt
 centroid = (0.7766488, -2.1521376)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz116.txt
 description = Benton County Lowlands, Benton County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz116.txt
 station = ('kcvo', 0.0003129)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz116.txt
 
@@ -51137,17 +51137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz116.txt
 centroid = (0.7770328, -2.1460603)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz117.txt
 description = Linn County Lowlands, Linn County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz117.txt
 station = ('kcvo', 0.0040380)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz117.txt
 
@@ -51155,17 +51155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz117.txt
 centroid = (0.7690008, -2.1495842)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz118.txt
 description = Lane County Lowlands, Lane County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz118.txt
 station = ('keug', 0.0014435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz118.txt
 
@@ -51173,17 +51173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz118.txt
 centroid = (0.7948578, -2.1307852)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz119.txt
 description = West Columbia River Gorge of Oregon above 500 ft, Hood River County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz119.txt
 station = ('kttd', 0.0040564)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz119.txt
 
@@ -51191,17 +51191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz119.txt
 centroid = (0.7959801, -2.1303018)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz120.txt
 description = West Columbia River Gorge I-84 Corridor, Hood River County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz120.txt
 station = ('kttd', 0.0044987)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz120.txt
 
@@ -51209,17 +51209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz120.txt
 centroid = (0.7959661, -2.1220900)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz121.txt
 description = Upper Hood River Valley, Hood River County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz121.txt
 station = ('k4s2', 0.0013250)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz121.txt
 
@@ -51227,17 +51227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz121.txt
 centroid = (0.7976242, -2.1224443)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz122.txt
 description = Central Columbia River Gorge I-84 Corridor, Hood River County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz122.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz122.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz122.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz122.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz122.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz122.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz122.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz122.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz122.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz122.txt
 station = ('k4s2', 0.0009943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz122.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz122.txt
 
@@ -51245,17 +51245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz122.txt
 centroid = (0.7890424, -2.1338099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz123.txt
 description = Clackamas County Cascade Foothills, Clackamas County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz123.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz123.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz123.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz123.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz123.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz123.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz123.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz123.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz123.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz123.txt
 station = ('kttd', 0.0062635)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz123.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz123.txt
 
@@ -51263,17 +51263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz123.txt
 centroid = (0.7774569, -2.1393775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz124.txt
 description = Cascade Foothills of Marion and Linn Counties, Linn County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz124.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz124.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz124.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz124.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz124.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz124.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz124.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz124.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz124.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz124.txt
 station = ('ksle', 0.0081158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz124.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz124.txt
 
@@ -51281,17 +51281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz124.txt
 centroid = (0.7670705, -2.1419239)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz125.txt
 description = Lane County Cascade Foothills, Lane County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz125.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz125.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz125.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz125.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz125.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz125.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz125.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz125.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz125.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz125.txt
 station = ('k77s', 0.0035822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz125.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz125.txt
 
@@ -51299,17 +51299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz125.txt
 centroid = (0.7894543, -2.1278758)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz126.txt
 description = North Oregon Cascades, Multnomah County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz126.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz126.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz126.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz126.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz126.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz126.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz126.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz126.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz126.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz126.txt
 station = ('kttd', 0.0082485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz126.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz126.txt
 
@@ -51317,17 +51317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz126.txt
 centroid = (0.7781655, -2.1314153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz127.txt
 description = Cascades of Marion and Linn Counties, Linn County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz127.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz127.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz127.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz127.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz127.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz127.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz127.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz127.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz127.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz127.txt
 station = ('kuao', 0.0140755)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz127.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz127.txt
 
@@ -51335,17 +51335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz127.txt
 centroid = (0.7647998, -2.1341118)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz128.txt
 description = Cascades of Lane County, Lane County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz128.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz128.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz128.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz128.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz128.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz128.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz128.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz128.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz128.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz128.txt
 station = ('k77s', 0.0094036)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz128.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz128.txt
 
@@ -51353,17 +51353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz128.txt
 centroid = (0.7975317, -2.0595601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz502.txt
 description = Northern Blue Mountains of Oregon, Wallowa County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz502.txt
 station = ('klgd', 0.0071886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz502.txt
 
@@ -51371,17 +51371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz502.txt
 centroid = (0.7850718, -2.0764496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz503.txt
 description = Southern Blue Mountains of Oregon, Wheeler County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz503.txt
 station = ('kgcd', 0.0100729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz503.txt
 
@@ -51389,17 +51389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz503.txt
 centroid = (0.7807120, -2.0905990)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz505.txt
 description = John Day Basin, Wheeler County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz505.txt
 station = ('kgcd', 0.0116817)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz505.txt
 
@@ -51407,17 +51407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz505.txt
 centroid = (0.7708282, -2.0945452)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz506.txt
 description = Ochoco-John Day Highlands, Wheeler County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz506.txt
 station = ('kbdn', 0.0149878)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz506.txt
 
@@ -51425,17 +51425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz506.txt
 centroid = (0.7980309, -2.0719414)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz507.txt
 description = Foothills of the Northern Blue Mountains of Oregon, Umatilla County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz507.txt
 station = ('kmeh', 0.0051185)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz507.txt
 
@@ -51443,17 +51443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz507.txt
 centroid = (0.7914056, -2.0944457)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz508.txt
 description = Foothills of the Southern Blue Mountains of Oregon, Wheeler County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz508.txt
 station = ('khri', 0.0123991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz508.txt
 
@@ -51461,17 +51461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz508.txt
 centroid = (0.7725299, -2.1214756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz509.txt
 description = East Slopes of the Oregon Cascades, Wasco County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz509.txt
 station = ('kbdn', 0.0052769)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz509.txt
 
@@ -51479,17 +51479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz509.txt
 centroid = (0.7892553, -2.1122359)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz510.txt
 description = North Central Oregon, Wasco County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz510.txt
 station = ('kdls', 0.0071289)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz510.txt
 
@@ -51497,17 +51497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz510.txt
 centroid = (0.7756924, -2.1144454)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/or/orz511.txt
 description = Central Oregon, Jefferson County, OR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orz511.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orz511.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/or/orc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/or/orc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/or/orz511.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/or/orz511.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orz511.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orz511.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orz511.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/or/orc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/or/orc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/or/orc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/or/orz511.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/or/orz511.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz511.txt
 station = ('krdm', 0.0033897)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz511.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz511.txt
 
@@ -51515,17 +51515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz511.txt
 centroid = (0.7348150, -1.3984363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz001.txt
 description = Northern Erie County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz001.txt
 station = ('keri', 0.0008273)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz001.txt
 
@@ -51533,17 +51533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz001.txt
 centroid = (0.7325147, -1.3965077)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz002.txt
 description = Southern Erie County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz002.txt
 station = ('keri', 0.0029551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz002.txt
 
@@ -51551,17 +51551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz002.txt
 centroid = (0.7275370, -1.3981187)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz003.txt
 description = Crawford County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz003.txt
 station = ('kgkj', 0.0016965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz003.txt
 
@@ -51569,17 +51569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz003.txt
 centroid = (0.7298042, -1.3835941)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz004.txt
 description = Warren County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz004.txt
 station = ('kjhw', 0.0058529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz004.txt
 
@@ -51587,17 +51587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz004.txt
 centroid = (0.7296838, -1.3712877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz005.txt
 description = McKean County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz005.txt
 station = ('kbfd', 0.0008480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz005.txt
 
@@ -51605,17 +51605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz005.txt
 centroid = (0.7285877, -1.3595382)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz006.txt
 description = Potter County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz006.txt
 station = ('kelz', 0.0063420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz006.txt
 
@@ -51623,17 +51623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz006.txt
 centroid = (0.7208594, -1.4007611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz007.txt
 description = Mercer County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz007.txt
 station = ('kucp', 0.0052480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz007.txt
 
@@ -51641,17 +51641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz007.txt
 centroid = (0.7225838, -1.3920397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz008.txt
 description = Venango County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz008.txt
 station = ('kfkl', 0.0014559)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz008.txt
 
@@ -51659,17 +51659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz008.txt
 centroid = (0.7245420, -1.3829308)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz009.txt
 description = Forest County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz009.txt
 station = ('kduj', 0.0073830)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz009.txt
 
@@ -51677,17 +51677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz009.txt
 centroid = (0.7230079, -1.3726875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz010.txt
 description = Elk County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz010.txt
 station = ('koym', 0.0019317)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz010.txt
 
@@ -51695,17 +51695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz010.txt
 centroid = (0.7232086, -1.3649138)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz011.txt
 description = Cameron County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz011.txt
 station = ('koym', 0.0039333)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz011.txt
 
@@ -51713,17 +51713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz011.txt
 centroid = (0.7206709, -1.3567003)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz012.txt
 description = Northern Clinton County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz012.txt
 station = ('kunv', 0.0078557)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz012.txt
 
@@ -51731,17 +51731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz012.txt
 centroid = (0.7154314, -1.4020963)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz013.txt
 description = Lawrence County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz013.txt
 station = ('kucp', 0.0012000)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz013.txt
 
@@ -51749,17 +51749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz013.txt
 centroid = (0.7140439, -1.3947450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz014.txt
 description = Butler County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz014.txt
 station = ('kbtp', 0.0022931)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz014.txt
 
@@ -51767,17 +51767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz014.txt
 centroid = (0.7189448, -1.3861579)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz015.txt
 description = Clarion County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz015.txt
 station = ('kduj', 0.0070638)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz015.txt
 
@@ -51785,17 +51785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz015.txt
 centroid = (0.7178208, -1.3788014)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz016.txt
 description = Jefferson County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz016.txt
 station = ('kduj', 0.0018054)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz016.txt
 
@@ -51803,17 +51803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz016.txt
 centroid = (0.7155885, -1.3696314)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz017.txt
 description = Clearfield County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz017.txt
 station = ('kfig', 0.0011521)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz017.txt
 
@@ -51821,17 +51821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz017.txt
 centroid = (0.7154017, -1.3614127)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz018.txt
 description = Northern Centre County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz018.txt
 station = ('kunv', 0.0031639)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz018.txt
 
@@ -51839,17 +51839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz018.txt
 centroid = (0.7133841, -1.3561592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz019.txt
 description = Southern Centre County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz019.txt
 station = ('kunv', 0.0019950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz019.txt
 
@@ -51857,17 +51857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz019.txt
 centroid = (0.7100401, -1.4023598)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz020.txt
 description = Beaver County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz020.txt
 station = ('kbvi', 0.0016180)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz020.txt
 
@@ -51875,17 +51875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz020.txt
 centroid = (0.7063138, -1.3959353)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz021.txt
 description = Allegheny County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz021.txt
 station = ('kagc', 0.0022438)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz021.txt
 
@@ -51893,17 +51893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz021.txt
 centroid = (0.7123125, -1.3869172)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz022.txt
 description = Armstrong County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz022.txt
 station = ('kidi', 0.0057467)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz022.txt
 
@@ -51911,17 +51911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz022.txt
 centroid = (0.7067781, -1.3738115)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz024.txt
 description = Cambria County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz024.txt
 station = ('kjst', 0.0035019)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz024.txt
 
@@ -51929,17 +51929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz024.txt
 centroid = (0.7065320, -1.3674410)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz025.txt
 description = Blair County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz025.txt
 station = ('kaoo', 0.0031926)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz025.txt
 
@@ -51947,17 +51947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz025.txt
 centroid = (0.7054097, -1.3610287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz026.txt
 description = Huntingdon County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz026.txt
 station = ('kaoo', 0.0049067)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz026.txt
 
@@ -51965,17 +51965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz026.txt
 centroid = (0.7087852, -1.3546740)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz027.txt
 description = Mifflin County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz027.txt
 station = ('krvl', 0.0012910)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz027.txt
 
@@ -51983,17 +51983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz027.txt
 centroid = (0.7074011, -1.3509197)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz028.txt
 description = Juniata County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz028.txt
 station = ('krvl', 0.0040565)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz028.txt
 
@@ -52001,17 +52001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz028.txt
 centroid = (0.7014374, -1.4005953)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz029.txt
 description = Washington County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz029.txt
 station = ('kafj', 0.0010850)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz029.txt
 
@@ -52019,17 +52019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz029.txt
 centroid = (0.6955800, -1.4001537)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz031.txt
 description = Greene County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz031.txt
 station = ('kafj', 0.0049452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz031.txt
 
@@ -52037,17 +52037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz031.txt
 centroid = (0.6976517, -1.3793040)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz033.txt
 description = Somerset County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz033.txt
 station = ('k2g9', 0.0011767)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz033.txt
 
@@ -52055,17 +52055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz033.txt
 centroid = (0.6982469, -1.3699124)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz034.txt
 description = Bedford County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz034.txt
 station = ('khmz', 0.0014044)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz034.txt
 
@@ -52073,17 +52073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz034.txt
 centroid = (0.6968314, -1.3633186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz035.txt
 description = Fulton County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz035.txt
 station = ('khgr', 0.0064278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz035.txt
 
@@ -52091,17 +52091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz035.txt
 centroid = (0.6968663, -1.3564908)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz036.txt
 description = Franklin County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz036.txt
 station = ('khgr', 0.0039740)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz036.txt
 
@@ -52109,17 +52109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz036.txt
 centroid = (0.7290607, -1.3483419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz037.txt
 description = Tioga County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz037.txt
 station = ('kn38', 0.0020059)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz037.txt
 
@@ -52127,17 +52127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz037.txt
 centroid = (0.7293487, -1.3354509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz038.txt
 description = Bradford County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz038.txt
 station = ('kelm', 0.0082706)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz038.txt
 
@@ -52145,17 +52145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz038.txt
 centroid = (0.7299211, -1.3229735)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz039.txt
 description = Susquehanna County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz039.txt
 station = ('kbgm', 0.0070190)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz039.txt
 
@@ -52163,17 +52163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz039.txt
 centroid = (0.7291514, -1.3140549)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz040.txt
 description = Northern Wayne County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz040.txt
 station = ('kavp', 0.0096746)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz040.txt
 
@@ -52181,17 +52181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz040.txt
 centroid = (0.7230288, -1.3469125)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz041.txt
 description = Northern Lycoming County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz041.txt
 station = ('kipt', 0.0045519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz041.txt
 
@@ -52199,17 +52199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz041.txt
 centroid = (0.7233692, -1.3353846)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz042.txt
 description = Sullivan County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz042.txt
 station = ('kipt', 0.0063110)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz042.txt
 
@@ -52217,17 +52217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz042.txt
 centroid = (0.7246328, -1.3267382)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz043.txt
 description = Wyoming County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz043.txt
 station = ('kavp', 0.0049158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz043.txt
 
@@ -52235,17 +52235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz043.txt
 centroid = (0.7232121, -1.3196295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz044.txt
 description = Lackawanna County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz044.txt
 station = ('kavp', 0.0024323)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz044.txt
 
@@ -52253,17 +52253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz044.txt
 centroid = (0.7169621, -1.3505724)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz045.txt
 description = Southern Clinton County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz045.txt
 station = ('kipt', 0.0068056)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz045.txt
 
@@ -52271,17 +52271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz045.txt
 centroid = (0.7195766, -1.3424340)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz046.txt
 description = Southern Lycoming County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz046.txt
 station = ('kipt', 0.0003719)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz046.txt
 
@@ -52289,17 +52289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz046.txt
 centroid = (0.7186777, -1.3262565)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz047.txt
 description = Luzerne County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz047.txt
 station = ('khzl', 0.0033240)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz047.txt
 
@@ -52307,17 +52307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz047.txt
 centroid = (0.7213812, -1.3095851)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz048.txt
 description = Pike County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz048.txt
 station = ('kmpo', 0.0057528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz048.txt
 
@@ -52325,17 +52325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz048.txt
 centroid = (0.7149392, -1.3449874)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz049.txt
 description = Union County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz049.txt
 station = ('kseg', 0.0036293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz049.txt
 
@@ -52343,17 +52343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz049.txt
 centroid = (0.7115707, -1.3451270)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz050.txt
 description = Snyder County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz050.txt
 station = ('kseg', 0.0028087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz050.txt
 
@@ -52361,17 +52361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz050.txt
 centroid = (0.7160737, -1.3379450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz051.txt
 description = Montour County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz051.txt
 station = ('kn79', 0.0036169)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz051.txt
 
@@ -52379,17 +52379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz051.txt
 centroid = (0.7130019, -1.3388264)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz052.txt
 description = Northumberland County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz052.txt
 station = ('kn79', 0.0020844)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz052.txt
 
@@ -52397,17 +52397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz052.txt
 centroid = (0.7164332, -1.3335223)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz053.txt
 description = Columbia County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz053.txt
 station = ('kn79', 0.0041741)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz053.txt
 
@@ -52415,17 +52415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz053.txt
 centroid = (0.7141591, -1.3213678)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz054.txt
 description = Carbon County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz054.txt
 station = ('k22n', 0.0020223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz054.txt
 
@@ -52433,17 +52433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz054.txt
 centroid = (0.7166008, -1.3149206)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz055.txt
 description = Monroe County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz055.txt
 station = ('kmpo', 0.0014330)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz055.txt
 
@@ -52451,17 +52451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz055.txt
 centroid = (0.7050851, -1.3484798)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz056.txt
 description = Perry County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz056.txt
 station = ('kcxy', 0.0063371)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz056.txt
 
@@ -52469,17 +52469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz056.txt
 centroid = (0.7053835, -1.3400498)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz057.txt
 description = Dauphin County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz057.txt
 station = ('kcxy', 0.0035959)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz057.txt
 
@@ -52487,17 +52487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz057.txt
 centroid = (0.7104520, -1.3302201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz058.txt
 description = Schuylkill County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz058.txt
 station = ('kzer', 0.0020786)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz058.txt
 
@@ -52505,17 +52505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz058.txt
 centroid = (0.7045405, -1.3344386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz059.txt
 description = Lebanon County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz059.txt
 station = ('kmui', 0.0018520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz059.txt
 
@@ -52523,17 +52523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz059.txt
 centroid = (0.7053993, -1.3251587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz060.txt
 description = Berks County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz060.txt
 station = ('krdg', 0.0010226)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz060.txt
 
@@ -52541,17 +52541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz060.txt
 centroid = (0.7088288, -1.3193363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz061.txt
 description = Lehigh County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz061.txt
 station = ('kxll', 0.0015868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz061.txt
 
@@ -52559,17 +52559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz061.txt
 centroid = (0.7112967, -1.3143621)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz062.txt
 description = Northampton County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz062.txt
 station = ('kabe', 0.0026218)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz062.txt
 
@@ -52577,17 +52577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz062.txt
 centroid = (0.7009888, -1.3485304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz063.txt
 description = Cumberland County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz063.txt
 station = ('kcxy', 0.0056111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz063.txt
 
@@ -52595,17 +52595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz063.txt
 centroid = (0.6958890, -1.3477066)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz064.txt
 description = Adams County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz064.txt
 station = ('kdmw', 0.0053908)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz064.txt
 
@@ -52613,17 +52613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz064.txt
 centroid = (0.6967337, -1.3391300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz065.txt
 description = York County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz065.txt
 station = ('kthv', 0.0021001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz065.txt
 
@@ -52631,17 +52631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz065.txt
 centroid = (0.6988717, -1.3307734)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz066.txt
 description = Lancaster County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz066.txt
 station = ('klns', 0.0014724)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz066.txt
 
@@ -52649,17 +52649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz066.txt
 centroid = (0.6966778, -1.3159608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz070.txt
 description = Delaware County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz070.txt
 station = ('koqn', 0.0027621)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz070.txt
 
@@ -52667,17 +52667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz070.txt
 centroid = (0.6982643, -1.3113322)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz071.txt
 description = Philadelphia County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz071.txt
 station = ('kpne', 0.0020485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz071.txt
 
@@ -52685,17 +52685,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz071.txt
 centroid = (0.7238980, -1.3146047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz072.txt
 description = Southern Wayne County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz072.txt
 station = ('kavp', 0.0059431)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz072.txt
 
@@ -52703,17 +52703,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz072.txt
 centroid = (0.7041461, -1.3888423)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz073.txt
 description = Westmoreland County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz073.txt
 station = ('klbe', 0.0025603)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz073.txt
 
@@ -52721,17 +52721,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz073.txt
 centroid = (0.7022699, -1.3828697)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz074.txt
 description = Westmoreland Ridges, Westmoreland County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz074.txt
 station = ('klbe', 0.0023711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz074.txt
 
@@ -52739,17 +52739,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz074.txt
 centroid = (0.6972329, -1.3922806)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz075.txt
 description = Fayette County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz075.txt
 station = ('kvvs', 0.0015411)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz075.txt
 
@@ -52757,17 +52757,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz075.txt
 centroid = (0.6962049, -1.3878247)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz076.txt
 description = Fayette Ridges, Fayette County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz076.txt
 station = ('kvvs', 0.0022631)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz076.txt
 
@@ -52775,17 +52775,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz076.txt
 centroid = (0.7103036, -1.3808469)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz077.txt
 description = Indiana County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz077.txt
 station = ('kidi', 0.0011398)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz077.txt
 
@@ -52793,17 +52793,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz077.txt
 centroid = (0.7074134, -1.3789899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz078.txt
 description = Higher Elevations of Indiana County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz078.txt
 station = ('kidi', 0.0021340)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz078.txt
 
@@ -52811,17 +52811,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz078.txt
 centroid = (0.6976657, -1.3220572)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz101.txt
 description = Western Chester County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz101.txt
 station = ('kmqs', 0.0015707)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz101.txt
 
@@ -52829,17 +52829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz101.txt
 centroid = (0.6976657, -1.3220572)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz102.txt
 description = Eastern Chester County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz102.txt
 station = ('kmqs', 0.0015707)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz102.txt
 
@@ -52847,17 +52847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz102.txt
 centroid = (0.7018126, -1.3154058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz103.txt
 description = Western Montgomery County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz103.txt
 station = ('klom', 0.0018705)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz103.txt
 
@@ -52865,17 +52865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz103.txt
 centroid = (0.7018126, -1.3154058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz104.txt
 description = Eastern Montgomery County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz104.txt
 station = ('klom', 0.0018705)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz104.txt
 
@@ -52883,17 +52883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz104.txt
 centroid = (0.7040135, -1.3108592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz105.txt
 description = Bucks, Upper Bucks County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz105.txt
 station = ('kdyl', 0.0001472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz105.txt
 
@@ -52901,17 +52901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz105.txt
 centroid = (0.7040135, -1.3108592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pa/paz106.txt
 description = Bucks, Lower Bucks County, PA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/paz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/paz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pa/pac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pa/pac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pa/paz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pa/paz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/paz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/paz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/paz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pa/pac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pa/pac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pa/pac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pa/paz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pa/paz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz106.txt
 station = ('kdyl', 0.0001472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz106.txt
 
@@ -52919,17 +52919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz106.txt
 centroid = (0.3206344, -1.1536295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz001.txt
 description = San Juan and Vicinity, Trujillo Alto County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz001.txt
 station = ('tjig', 0.0014975)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz001.txt
 
@@ -52937,17 +52937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz001.txt
 centroid = (0.3191527, -1.1480706)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz002.txt
 description = Northeast, Rio Grande County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz002.txt
 station = ('tjnr', 0.0025047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz002.txt
 
@@ -52955,17 +52955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz002.txt
 centroid = (0.3146096, -1.1532368)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz003.txt
 description = Southeast, Yabucoa County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz003.txt
 station = ('tjsj', 0.0075090)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz003.txt
 
@@ -52973,17 +52973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz003.txt
 centroid = (0.3174649, -1.1528249)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz004.txt
 description = Eastern Interior, San Lorenzo County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz004.txt
 station = ('tjsj', 0.0046292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz004.txt
 
@@ -52991,17 +52991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz004.txt
 centroid = (0.3214094, -1.1611833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz005.txt
 description = North Central, Vega Baja County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz005.txt
 station = ('tjps', 0.0069844)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz005.txt
 
@@ -53009,17 +53009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz005.txt
 centroid = (0.3178768, -1.1590592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz006.txt
 description = Central Interior, Villalba County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz006.txt
 station = ('tjps', 0.0043087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz006.txt
 
@@ -53027,17 +53027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz006.txt
 centroid = (0.3151000, -1.1633091)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz007.txt
 description = Ponce and Vicinity, Yauco County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz007.txt
 station = ('tjps', 0.0015687)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz007.txt
 
@@ -53045,17 +53045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz007.txt
 centroid = (0.3217567, -1.1683409)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz008.txt
 description = Northwest, Quebradillas County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz008.txt
 station = ('tjbq', 0.0033783)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz008.txt
 
@@ -53063,17 +53063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz008.txt
 centroid = (0.3183219, -1.1667212)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz009.txt
 description = Western Interior, Utuado County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz009.txt
 station = ('tjps', 0.0060661)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz009.txt
 
@@ -53081,17 +53081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz009.txt
 centroid = (0.3183917, -1.1723080)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz010.txt
 description = Mayaguez and Vicinity, San German County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz010.txt
 station = ('tjbq', 0.0045314)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz010.txt
 
@@ -53099,17 +53099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz010.txt
 centroid = (0.3144734, -1.1704422)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz011.txt
 description = Southwest, Lajas County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz011.txt
 station = ('tjbq', 0.0084966)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz011.txt
 
@@ -53117,17 +53117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz011.txt
 centroid = (0.3196728, -1.1394853)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz012.txt
 description = Culebra County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz012.txt
 station = ('tist', 0.0050520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz012.txt
 
@@ -53135,17 +53135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz012.txt
 centroid = (0.3163078, -1.1421696)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/pr/prz013.txt
 description = Vieques County, PR, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/pr/prc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/pr/prc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/pr/prz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/pr/prz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/pr/prc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/pr/prc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/pr/prc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/pr/prz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/pr/prz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz013.txt
 station = ('tjnr', 0.0038760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz013.txt
 
@@ -53153,17 +53153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz013.txt
 centroid = (0.7311324, -1.2500100)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz001.txt
 description = Northwest Providence County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz001.txt
 station = ('ksfz', 0.0016266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz001.txt
 
@@ -53171,17 +53171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz001.txt
 centroid = (0.7297588, -1.2470831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz002.txt
 description = Southeast Providence County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz002.txt
 station = ('kpvd', 0.0013974)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz002.txt
 
@@ -53189,17 +53189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz002.txt
 centroid = (0.7271810, -1.2507675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz003.txt
 description = Western Kent County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz003.txt
 station = ('koqu', 0.0034129)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz003.txt
 
@@ -53207,17 +53207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz003.txt
 centroid = (0.7275597, -1.2472943)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz004.txt
 description = Eastern Kent County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz004.txt
 station = ('kpvd', 0.0009201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz004.txt
 
@@ -53225,17 +53225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz004.txt
 centroid = (0.7280833, -1.2441440)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz005.txt
 description = Bristol County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz005.txt
 station = ('kpvd', 0.0019658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz005.txt
 
@@ -53243,17 +53243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz005.txt
 centroid = (0.7239277, -1.2500886)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz006.txt
 description = Washington County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz006.txt
 station = ('kwst', 0.0032015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz006.txt
 
@@ -53261,17 +53261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz006.txt
 centroid = (0.7252890, -1.2433132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz007.txt
 description = Newport County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz007.txt
 station = ('kuuu', 0.0007274)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz007.txt
 
@@ -53279,17 +53279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz007.txt
 centroid = (0.7186917, -1.2492805)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ri/riz008.txt
 description = Block Island, Washington County, RI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/riz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/riz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ri/ric009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ri/ric009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ri/riz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ri/riz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/riz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/riz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/riz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ri/ric009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ri/ric009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ri/ric009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ri/riz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ri/riz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz008.txt
 station = ('kbid', 0.0002516)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz008.txt
 
@@ -53297,17 +53297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz008.txt
 centroid = (0.6117065, -1.4245447)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz008.txt
 description = Cherokee County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz008.txt
 station = ('keho', 0.0035341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz008.txt
 
@@ -53315,17 +53315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz008.txt
 centroid = (0.6104237, -1.4169368)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz009.txt
 description = York County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz009.txt
 station = ('kuza', 0.0019293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz009.txt
 
@@ -53333,17 +53333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz009.txt
 centroid = (0.6024719, -1.4423034)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz010.txt
 description = Anderson County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz010.txt
 station = ('kand', 0.0011809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz010.txt
 
@@ -53351,17 +53351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz010.txt
 centroid = (0.5972970, -1.4391758)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz011.txt
 description = Abbeville County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz011.txt
 station = ('kgrd', 0.0044586)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz011.txt
 
@@ -53369,17 +53369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz011.txt
 centroid = (0.6018524, -1.4312747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz012.txt
 description = Laurens County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz012.txt
 station = ('klux', 0.0009400)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz012.txt
 
@@ -53387,17 +53387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz012.txt
 centroid = (0.6054408, -1.4245273)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz013.txt
 description = Union County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz013.txt
 station = ('k35a', 0.0003152)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz013.txt
 
@@ -53405,17 +53405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz013.txt
 centroid = (0.6054914, -1.4165005)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz014.txt
 description = Chester County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz014.txt
 station = ('kdcm', 0.0017745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz014.txt
 
@@ -53423,17 +53423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz014.txt
 centroid = (0.6045768, -1.3990315)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz016.txt
 description = Chesterfield County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz016.txt
 station = ('kcqw', 0.0031631)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz016.txt
 
@@ -53441,17 +53441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz016.txt
 centroid = (0.6039188, -1.3906539)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz017.txt
 description = Marlboro County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz017.txt
 station = ('kbbp', 0.0008721)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz017.txt
 
@@ -53459,17 +53459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz017.txt
 centroid = (0.5916596, -1.4365788)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz018.txt
 description = McCormick County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz018.txt
 station = ('kgrd', 0.0062668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz018.txt
 
@@ -53477,17 +53477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz018.txt
 centroid = (0.5960963, -1.4333674)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz019.txt
 description = Greenwood County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz019.txt
 station = ('kgrd', 0.0014311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz019.txt
 
@@ -53495,17 +53495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz019.txt
 centroid = (0.5984699, -1.4241904)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz020.txt
 description = Newberry County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz020.txt
 station = ('keoe', 0.0006647)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz020.txt
 
@@ -53513,17 +53513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz020.txt
 centroid = (0.6003077, -1.4158320)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz021.txt
 description = Fairfield County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz021.txt
 station = ('kfdw', 0.0014007)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz021.txt
 
@@ -53531,17 +53531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz021.txt
 centroid = (0.5993251, -1.4065661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz022.txt
 description = Kershaw County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz022.txt
 station = ('kcdn', 0.0010306)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz022.txt
 
@@ -53549,17 +53549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz022.txt
 centroid = (0.5992134, -1.3955251)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz023.txt
 description = Darlington County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz023.txt
 station = ('kudg', 0.0022575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz023.txt
 
@@ -53567,17 +53567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz023.txt
 centroid = (0.6002449, -1.3854232)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz024.txt
 description = Dillon County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz024.txt
 station = ('kmao', 0.0037254)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz024.txt
 
@@ -53585,17 +53585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz024.txt
 centroid = (0.5894378, -1.4305870)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz025.txt
 description = Edgefield County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz025.txt
 station = ('kaik', 0.0046170)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz025.txt
 
@@ -53603,17 +53603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz025.txt
 centroid = (0.5935184, -1.4264035)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz026.txt
 description = Saluda County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz026.txt
 station = ('keoe', 0.0054396)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz026.txt
 
@@ -53621,17 +53621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz026.txt
 centroid = (0.5917050, -1.4184675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz027.txt
 description = Lexington County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz027.txt
 station = ('kcae', 0.0024020)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz027.txt
 
@@ -53639,17 +53639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz027.txt
 centroid = (0.5937924, -1.4120255)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz028.txt
 description = Richland County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz028.txt
 station = ('kcub', 0.0017006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz028.txt
 
@@ -53657,17 +53657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz028.txt
 centroid = (0.5962621, -1.4007053)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz029.txt
 description = Lee County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz029.txt
 station = ('ksms', 0.0033184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz029.txt
 
@@ -53675,17 +53675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz029.txt
 centroid = (0.5854602, -1.4247960)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz030.txt
 description = Aiken County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz030.txt
 station = ('kaik', 0.0019725)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz030.txt
 
@@ -53693,17 +53693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz030.txt
 centroid = (0.5919494, -1.4029358)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz031.txt
 description = Sumter County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz031.txt
 station = ('ksms', 0.0014085)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz031.txt
 
@@ -53711,17 +53711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz031.txt
 centroid = (0.5938396, -1.3910763)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz032.txt
 description = Florence County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz032.txt
 station = ('kflo', 0.0028071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz032.txt
 
@@ -53729,17 +53729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz032.txt
 centroid = (0.5948100, -1.3851369)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz033.txt
 description = Marion County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz033.txt
 station = ('kmao', 0.0018096)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz033.txt
 
@@ -53747,17 +53747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz033.txt
 centroid = (0.5806030, -1.4213089)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz035.txt
 description = Barnwell County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz035.txt
 station = ('kbnl', 0.0006968)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz035.txt
 
@@ -53765,17 +53765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz035.txt
 centroid = (0.5877379, -1.4098805)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz037.txt
 description = Calhoun County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz037.txt
 station = ('kogb', 0.0037734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz037.txt
 
@@ -53783,17 +53783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz037.txt
 centroid = (0.5875791, -1.4000403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz038.txt
 description = Clarendon County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz038.txt
 station = ('kmni', 0.0014393)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz038.txt
 
@@ -53801,17 +53801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz038.txt
 centroid = (0.5867779, -1.3915109)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz039.txt
 description = Williamsburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz039.txt
 station = ('kcki', 0.0025321)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz039.txt
 
@@ -53819,17 +53819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz039.txt
 centroid = (0.5757510, -1.4199667)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz040.txt
 description = Allendale County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz040.txt
 station = ('kaqx', 0.0012925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz040.txt
 
@@ -53837,17 +53837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz040.txt
 centroid = (0.5797059, -1.4146627)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz041.txt
 description = Bamberg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz041.txt
 station = ('kaqx', 0.0049662)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz041.txt
 
@@ -53855,17 +53855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz041.txt
 centroid = (0.5720544, -1.4161706)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz042.txt
 description = Hampton County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz042.txt
 station = ('kaqx', 0.0042651)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz042.txt
 
@@ -53873,17 +53873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz042.txt
 centroid = (0.5745257, -1.4085313)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz043.txt
 description = Inland Colleton County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz043.txt
 station = ('krbw', 0.0009143)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz043.txt
 
@@ -53891,17 +53891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz043.txt
 centroid = (0.5773462, -1.4033355)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz044.txt
 description = Dorchester County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz044.txt
 station = ('kdyb', 0.0018627)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz044.txt
 
@@ -53909,17 +53909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz044.txt
 centroid = (0.5798333, -1.3954640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz045.txt
 description = Inland Berkeley County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz045.txt
 station = ('kmks', 0.0013577)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz045.txt
 
@@ -53927,17 +53927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz045.txt
 centroid = (0.5668184, -1.4146190)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz047.txt
 description = Inland Jasper County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz047.txt
 station = ('knbc', 0.0049343)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz047.txt
 
@@ -53945,17 +53945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz047.txt
 centroid = (0.5652668, -1.4091317)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz048.txt
 description = Beaufort County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz048.txt
 station = ('karw', 0.0015770)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz048.txt
 
@@ -53963,17 +53963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz048.txt
 centroid = (0.5691571, -1.4049551)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz049.txt
 description = Coastal Colleton County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz049.txt
 station = ('knbc', 0.0039064)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz049.txt
 
@@ -53981,17 +53981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz049.txt
 centroid = (0.5731853, -1.3952808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz050.txt
 description = Charleston County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz050.txt
 station = ('kchs', 0.0016683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz050.txt
 
@@ -53999,17 +53999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz050.txt
 centroid = (0.5627343, -1.4129505)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz051.txt
 description = Coastal Jasper County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz051.txt
 station = ('khxd', 0.0038075)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz051.txt
 
@@ -54017,17 +54017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz051.txt
 centroid = (0.5752815, -1.3948375)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz052.txt
 description = Tidal Berkeley County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz052.txt
 station = ('kchs', 0.0019951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz052.txt
 
@@ -54035,17 +54035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz052.txt
 centroid = (0.5888444, -1.3763614)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz054.txt
 description = Coastal Horry County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz054.txt
 station = ('kmyr', 0.0014364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz054.txt
 
@@ -54053,17 +54053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz054.txt
 centroid = (0.5845422, -1.3856396)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz055.txt
 description = Inland Georgetown County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz055.txt
 station = ('kgge', 0.0033124)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz055.txt
 
@@ -54071,17 +54071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz055.txt
 centroid = (0.5821057, -1.3830635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz056.txt
 description = Coastal Georgetown County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz056.txt
 station = ('kgge', 0.0013133)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz056.txt
 
@@ -54089,17 +54089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz056.txt
 centroid = (0.5906875, -1.3790510)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz058.txt
 description = Central Horry County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz058.txt
 station = ('khyw', 0.0015943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz058.txt
 
@@ -54107,17 +54107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz058.txt
 centroid = (0.5946983, -1.3793320)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz059.txt
 description = Northern Horry County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz059.txt
 station = ('khyw', 0.0044833)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz059.txt
 
@@ -54125,17 +54125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz059.txt
 centroid = (0.6087324, -1.4506740)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz101.txt
 description = Oconee Mountains, Oconee County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz101.txt
 station = ('kceu', 0.0049849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz101.txt
 
@@ -54143,17 +54143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz101.txt
 centroid = (0.6111672, -1.4453089)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz102.txt
 description = Pickens Mountains, Pickens County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz102.txt
 station = ('klqk', 0.0039299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz102.txt
 
@@ -54161,17 +54161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz102.txt
 centroid = (0.6131342, -1.4392491)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz103.txt
 description = Greenville Mountains, Greenville County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz103.txt
 station = ('kgmu', 0.0051467)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz103.txt
 
@@ -54179,17 +54179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz103.txt
 centroid = (0.6054111, -1.4492952)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz104.txt
 description = Greater Oconee County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz104.txt
 station = ('kceu', 0.0022566)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz104.txt
 
@@ -54197,17 +54197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz104.txt
 centroid = (0.6084096, -1.4435077)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz105.txt
 description = Greater Pickens County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz105.txt
 station = ('klqk', 0.0008623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz105.txt
 
@@ -54215,17 +54215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz105.txt
 centroid = (0.6102945, -1.4377708)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz106.txt
 description = Central Greenville County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz106.txt
 station = ('kgmu', 0.0020867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz106.txt
 
@@ -54233,17 +54233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz106.txt
 centroid = (0.6053360, -1.4366486)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz107.txt
 description = Southern Greenville County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz107.txt
 station = ('kgyh', 0.0015881)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz107.txt
 
@@ -54251,17 +54251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz107.txt
 centroid = (0.6120102, -1.4321055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz108.txt
 description = Northern Spartanburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz108.txt
 station = ('kspa', 0.0029918)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz108.txt
 
@@ -54269,17 +54269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz108.txt
 centroid = (0.6079401, -1.4301978)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz109.txt
 description = Southern Spartanburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz109.txt
 station = ('kspa', 0.0014730)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz109.txt
 
@@ -54287,17 +54287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz109.txt
 centroid = (0.6096889, -1.4109591)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz115.txt
 description = Northern Lancaster County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz115.txt
 station = ('keqy', 0.0035409)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz115.txt
 
@@ -54305,17 +54305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz115.txt
 centroid = (0.6048910, -1.4082940)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz116.txt
 description = Southern Lancaster County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz116.txt
 station = ('klkr', 0.0026310)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz116.txt
 
@@ -54323,17 +54323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz116.txt
 centroid = (0.5860048, -1.4160432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz135.txt
 description = Northwestern Orangeburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz135.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz135.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz135.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz135.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz135.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz135.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz135.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz135.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz135.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz135.txt
 station = ('kxno', 0.0009359)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz135.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz135.txt
 
@@ -54341,17 +54341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz135.txt
 centroid = (0.5837934, -1.4121651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz136.txt
 description = Central Orangeburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz136.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz136.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz136.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz136.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz136.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz136.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz136.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz136.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz136.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz136.txt
 station = ('kogb', 0.0009422)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz136.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz136.txt
 
@@ -54359,17 +54359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz136.txt
 centroid = (0.5823274, -1.4056445)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sc/scz137.txt
 description = Southeastern Orangeburg County, SC, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scz137.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scz137.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sc/scc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sc/scc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sc/scz137.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sc/scz137.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scz137.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scz137.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scz137.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sc/scc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sc/scc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sc/scc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sc/scz137.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sc/scz137.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz137.txt
 station = ('kogb', 0.0048868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz137.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz137.txt
 
@@ -54377,17 +54377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz137.txt
 centroid = (0.7955281, -1.8063442)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz001.txt
 description = Harding County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz001.txt
 station = ('k2wx', 0.0007441)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz001.txt
 
@@ -54395,17 +54395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz001.txt
 centroid = (0.7982665, -1.7885000)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz002.txt
 description = Northern Perkins County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz002.txt
 station = ('khei', 0.0053267)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz002.txt
 
@@ -54413,17 +54413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz002.txt
 centroid = (0.7977673, -1.7662191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz003.txt
 description = Corson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz003.txt
 station = ('kmbg', 0.0099174)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz003.txt
 
@@ -54431,17 +54431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz003.txt
 centroid = (0.7988564, -1.7462316)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz004.txt
 description = Campbell County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz004.txt
 station = ('kmbg', 0.0058916)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz004.txt
 
@@ -54449,17 +54449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz004.txt
 centroid = (0.7987744, -1.7317419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz005.txt
 description = McPherson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz005.txt
 station = ('kabr', 0.0112720)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz005.txt
 
@@ -54467,17 +54467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz005.txt
 centroid = (0.7956921, -1.7165592)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz006.txt
 description = Brown County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz006.txt
 station = ('kabr', 0.0025664)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz006.txt
 
@@ -54485,17 +54485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz006.txt
 centroid = (0.7986382, -1.7034169)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz007.txt
 description = Marshall County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz007.txt
 station = ('kbtn', 0.0020172)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz007.txt
 
@@ -54503,17 +54503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz007.txt
 centroid = (0.7963868, -1.6920286)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz008.txt
 description = Roberts County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz008.txt
 station = ('k8d3', 0.0007905)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz008.txt
 
@@ -54521,17 +54521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz008.txt
 centroid = (0.7929013, -1.7458808)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz009.txt
 description = Walworth County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz009.txt
 station = ('kmbg', 0.0051567)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz009.txt
 
@@ -54539,17 +54539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz009.txt
 centroid = (0.7927076, -1.7316389)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz010.txt
 description = Edmunds County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz010.txt
 station = ('k0d8', 0.0117924)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz010.txt
 
@@ -54557,17 +54557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz010.txt
 centroid = (0.7918070, -1.7035722)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz011.txt
 description = Day County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz011.txt
 station = ('kbtn', 0.0079926)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz011.txt
 
@@ -54575,17 +54575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz011.txt
 centroid = (0.7837541, -1.8065571)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz012.txt
 description = Butte County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz012.txt
 station = ('kspf', 0.0081258)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz012.txt
 
@@ -54593,17 +54593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz012.txt
 centroid = (0.7822828, -1.7886134)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz013.txt
 description = Northern Meade Co Plains, Meade County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz013.txt
 station = ('kd07', 0.0068154)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz013.txt
 
@@ -54611,17 +54611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz013.txt
 centroid = (0.7850596, -1.7744064)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz014.txt
 description = Ziebach County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz014.txt
 station = ('kd07', 0.0044240)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz014.txt
 
@@ -54629,17 +54629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz014.txt
 centroid = (0.7881313, -1.7605468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz015.txt
 description = Dewey County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz015.txt
 station = ('kmbg', 0.0088497)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz015.txt
 
@@ -54647,17 +54647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz015.txt
 centroid = (0.7865239, -1.7445840)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz016.txt
 description = Potter County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz016.txt
 station = ('k0d8', 0.0013590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz016.txt
 
@@ -54665,17 +54665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz016.txt
 centroid = (0.7866391, -1.7304119)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz017.txt
 description = Faulk County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz017.txt
 station = ('k0d8', 0.0100689)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz017.txt
 
@@ -54683,17 +54683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz017.txt
 centroid = (0.7843178, -1.7164667)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz018.txt
 description = Spink County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz018.txt
 station = ('k1d8', 0.0026212)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz018.txt
 
@@ -54701,17 +54701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz018.txt
 centroid = (0.7829233, -1.7057016)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz019.txt
 description = Clark County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz019.txt
 station = ('k1d8', 0.0098974)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz019.txt
 
@@ -54719,17 +54719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz019.txt
 centroid = (0.7850107, -1.6962611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz020.txt
 description = Codington County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz020.txt
 station = ('katy', 0.0014392)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz020.txt
 
@@ -54737,17 +54737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz020.txt
 centroid = (0.7884001, -1.6889167)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz021.txt
 description = Grant County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz021.txt
 station = ('k1d1', 0.0026835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz021.txt
 
@@ -54755,17 +54755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz021.txt
 centroid = (0.7797032, -1.6962558)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz022.txt
 description = Hamlin County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz022.txt
 station = ('katy', 0.0039781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz022.txt
 
@@ -54773,17 +54773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz022.txt
 centroid = (0.7812094, -1.6871749)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz023.txt
 description = Deuel County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz023.txt
 station = ('kcnb', 0.0050327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz023.txt
 
@@ -54791,17 +54791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz023.txt
 centroid = (0.7714128, -1.8115191)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz024.txt
 description = Northern Black Hills, Pennington County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz024.txt
 station = ('kspf', 0.0049691)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz024.txt
 
@@ -54809,17 +54809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz024.txt
 centroid = (0.7770503, -1.8113882)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz025.txt
 description = Northern Foothills, Lawrence County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz025.txt
 station = ('kspf', 0.0006699)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz025.txt
 
@@ -54827,17 +54827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz025.txt
 centroid = (0.7679571, -1.8015812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz026.txt
 description = Rapid City, Pennington County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz026.txt
 station = ('krap', 0.0023354)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz026.txt
 
@@ -54845,17 +54845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz026.txt
 centroid = (0.7571535, -1.8082292)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz027.txt
 description = Southern Foothills, Fall River County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz027.txt
 station = ('kcut', 0.0061393)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz027.txt
 
@@ -54863,17 +54863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz027.txt
 centroid = (0.7656480, -1.8082362)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz028.txt
 description = Central Black Hills, Custer County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz028.txt
 station = ('kcut', 0.0023625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz028.txt
 
@@ -54881,17 +54881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz028.txt
 centroid = (0.7610892, -1.8108088)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz029.txt
 description = Southern Black Hills, Custer County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz029.txt
 station = ('kcut', 0.0027843)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz029.txt
 
@@ -54899,17 +54899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz029.txt
 centroid = (0.7626879, -1.7972737)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz030.txt
 description = Custer Co Plains, Custer County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz030.txt
 station = ('krap', 0.0061995)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz030.txt
 
@@ -54917,17 +54917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz030.txt
 centroid = (0.7680670, -1.7879537)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz031.txt
 description = Pennington Co Plains, Pennington County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz031.txt
 station = ('krap', 0.0076640)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz031.txt
 
@@ -54935,17 +54935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz031.txt
 centroid = (0.7730831, -1.7722056)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz032.txt
 description = Haakon County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz032.txt
 station = ('kphp', 0.0043314)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz032.txt
 
@@ -54953,17 +54953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz032.txt
 centroid = (0.7751409, -1.7581731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz033.txt
 description = Stanley County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz033.txt
 station = ('kpir', 0.0056663)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz033.txt
 
@@ -54971,17 +54971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz033.txt
 centroid = (0.7804327, -1.7476366)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz034.txt
 description = Sully County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz034.txt
 station = ('k0d8', 0.0052280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz034.txt
 
@@ -54989,17 +54989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz034.txt
 centroid = (0.7747342, -1.7452612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz035.txt
 description = Hughes County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz035.txt
 station = ('kpir', 0.0035840)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz035.txt
 
@@ -55007,17 +55007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz035.txt
 centroid = (0.7774988, -1.7363775)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz036.txt
 description = Hyde County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz036.txt
 station = ('k0d8', 0.0095961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz036.txt
 
@@ -55025,17 +55025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz036.txt
 centroid = (0.7775058, -1.7279632)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz037.txt
 description = Hand County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz037.txt
 station = ('k1d8', 0.0080597)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz037.txt
 
@@ -55043,17 +55043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz037.txt
 centroid = (0.7751793, -1.7152782)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz038.txt
 description = Beadle County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz038.txt
 station = ('khon', 0.0007803)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz038.txt
 
@@ -55061,17 +55061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz038.txt
 centroid = (0.7743956, -1.7015477)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz039.txt
 description = Kingsbury County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz039.txt
 station = ('kmds', 0.0079906)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz039.txt
 
@@ -55079,17 +55079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz039.txt
 centroid = (0.7743974, -1.6893129)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz040.txt
 description = Brookings County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz040.txt
 station = ('kbkx', 0.0012596)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz040.txt
 
@@ -55097,17 +55097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz040.txt
 centroid = (0.7534761, -1.8119101)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz041.txt
 description = Western Fall River County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz041.txt
 station = ('kcut', 0.0101305)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz041.txt
 
@@ -55115,17 +55115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz041.txt
 centroid = (0.7597540, -1.7899364)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz042.txt
 description = Northern Oglala Lakota County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc102.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc102.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc102.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc102.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc102.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz042.txt
 station = ('kien', 0.0086949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc102.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz042.txt
 
@@ -55133,17 +55133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz042.txt
 centroid = (0.7656358, -1.7731655)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz043.txt
 description = Northern Jackson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz043.txt
 station = ('kphp', 0.0031824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz043.txt
 
@@ -55151,17 +55151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz043.txt
 centroid = (0.7538932, -1.7743698)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz044.txt
 description = Bennett County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz044.txt
 station = ('kgrn', 0.0094176)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz044.txt
 
@@ -55169,17 +55169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz044.txt
 centroid = (0.7672537, -1.7573650)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz045.txt
 description = Jones County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz045.txt
 station = ('kpir', 0.0089640)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz045.txt
 
@@ -55187,17 +55187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz045.txt
 centroid = (0.7606337, -1.7585955)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz046.txt
 description = Mellette County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz046.txt
 station = ('kicr', 0.0120311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz046.txt
 
@@ -55205,17 +55205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz046.txt
 centroid = (0.7538670, -1.7578677)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz047.txt
 description = Todd County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz047.txt
 station = ('kvtn', 0.0060939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz047.txt
 
@@ -55223,17 +55223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz047.txt
 centroid = (0.7661262, -1.7426659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz048.txt
 description = Lyman County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz048.txt
 station = ('k9v9', 0.0070520)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz048.txt
 
@@ -55241,17 +55241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz048.txt
 centroid = (0.7565287, -1.7433047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz049.txt
 description = Tripp County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz049.txt
 station = ('kicr', 0.0007829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz049.txt
 
@@ -55259,17 +55259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz049.txt
 centroid = (0.7538496, -1.7311153)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz050.txt
 description = Gregory County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz050.txt
 station = ('k9v9', 0.0101594)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz050.txt
 
@@ -55277,17 +55277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz050.txt
 centroid = (0.7692766, -1.7314539)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz051.txt
 description = Buffalo County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz051.txt
 station = ('k9v9', 0.0055835)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz051.txt
 
@@ -55295,17 +55295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz051.txt
 centroid = (0.7691038, -1.7214148)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz052.txt
 description = Jerauld County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz052.txt
 station = ('khon', 0.0074287)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz052.txt
 
@@ -55313,17 +55313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz052.txt
 centroid = (0.7683550, -1.7120179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz053.txt
 description = Sanborn County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz053.txt
 station = ('kmhe', 0.0045417)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz053.txt
 
@@ -55331,17 +55331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz053.txt
 centroid = (0.7683288, -1.7036194)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz054.txt
 description = Miner County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz054.txt
 station = ('kmds', 0.0065812)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz054.txt
 
@@ -55349,17 +55349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz054.txt
 centroid = (0.7683288, -1.6952278)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz055.txt
 description = Lake County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz055.txt
 station = ('kmds', 0.0005559)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz055.txt
 
@@ -55367,17 +55367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz055.txt
 centroid = (0.7683306, -1.6872272)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz056.txt
 description = Moody County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz056.txt
 station = ('kbkx', 0.0051818)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz056.txt
 
@@ -55385,17 +55385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz056.txt
 centroid = (0.7630248, -1.7292897)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz057.txt
 description = Brule County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz057.txt
 station = ('k9v9', 0.0030901)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz057.txt
 
@@ -55403,17 +55403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz057.txt
 centroid = (0.7630265, -1.7202244)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz058.txt
 description = Aurora County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz058.txt
 station = ('kmhe', 0.0067145)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz058.txt
 
@@ -55421,17 +55421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz058.txt
 centroid = (0.7622726, -1.7129726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz059.txt
 description = Davison County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz059.txt
 station = ('kmhe', 0.0021408)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz059.txt
 
@@ -55439,17 +55439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz059.txt
 centroid = (0.7622691, -1.7067121)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz060.txt
 description = Hanson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz060.txt
 station = ('kmhe', 0.0034920)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz060.txt
 
@@ -55457,17 +55457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz060.txt
 centroid = (0.7622586, -1.6993992)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz061.txt
 description = McCook County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz061.txt
 station = ('kmds', 0.0069450)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz061.txt
 
@@ -55475,17 +55475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz061.txt
 centroid = (0.7622586, -1.6893286)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz062.txt
 description = Minnehaha County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz062.txt
 station = ('kfsd', 0.0016699)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz062.txt
 
@@ -55493,17 +55493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz062.txt
 centroid = (0.7541201, -1.7206835)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz063.txt
 description = Charles Mix County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz063.txt
 station = ('kmhe', 0.0120175)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz063.txt
 
@@ -55511,17 +55511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz063.txt
 centroid = (0.7572477, -1.7168141)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz064.txt
 description = Douglas County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz064.txt
 station = ('kmhe', 0.0078486)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz064.txt
 
@@ -55529,17 +55529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz064.txt
 centroid = (0.7563349, -1.7061396)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz065.txt
 description = Hutchinson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz065.txt
 station = ('kmhe', 0.0083214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz065.txt
 
@@ -55547,17 +55547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz065.txt
 centroid = (0.7559161, -1.6955664)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz066.txt
 description = Turner County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz066.txt
 station = ('kfsd', 0.0069398)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz066.txt
 
@@ -55565,17 +55565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz066.txt
 centroid = (0.7553593, -1.6881156)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz067.txt
 description = Lincoln County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz067.txt
 station = ('kfsd', 0.0053253)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz067.txt
 
@@ -55583,17 +55583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz067.txt
 centroid = (0.7502891, -1.7084103)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz068.txt
 description = Bon Homme County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz068.txt
 station = ('kykn', 0.0065259)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz068.txt
 
@@ -55601,17 +55601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz068.txt
 centroid = (0.7506487, -1.6998582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz069.txt
 description = Yankton County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz069.txt
 station = ('kykn', 0.0016180)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz069.txt
 
@@ -55619,17 +55619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz069.txt
 centroid = (0.7490011, -1.6925453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz070.txt
 description = Clay County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz070.txt
 station = ('kykn', 0.0052105)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz070.txt
 
@@ -55637,17 +55637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz070.txt
 centroid = (0.7475664, -1.6869672)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz071.txt
 description = Union County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz071.txt
 station = ('klrj', 0.0059976)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz071.txt
 
@@ -55655,17 +55655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz071.txt
 centroid = (0.7736486, -1.8043720)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz072.txt
 description = Sturgis-Piedmont Foothills, Meade County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz072.txt
 station = ('k49b', 0.0015948)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz072.txt
 
@@ -55673,17 +55673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz072.txt
 centroid = (0.7750222, -1.7936365)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz073.txt
 description = Southern Meade Co Plains, Meade County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz073.txt
 station = ('krca', 0.0060924)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz073.txt
 
@@ -55691,17 +55691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz073.txt
 centroid = (0.7621451, -1.8020682)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz074.txt
 description = Hermosa Foot Hills, Custer County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz074.txt
 station = ('kcut', 0.0047553)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz074.txt
 
@@ -55709,17 +55709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz074.txt
 centroid = (0.7541184, -1.8015236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz075.txt
 description = Eastern Fall River County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz075.txt
 station = ('kcdr', 0.0067118)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz075.txt
 
@@ -55727,17 +55727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz075.txt
 centroid = (0.7538094, -1.7898090)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz076.txt
 description = Southern Oglala Lakota County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc102.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc102.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc102.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc102.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc102.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz076.txt
 station = ('kien', 0.0027660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc102.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz076.txt
 
@@ -55745,17 +55745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz076.txt
 centroid = (0.7603143, -1.7741848)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz077.txt
 description = Southern Jackson County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz077.txt
 station = ('kphp', 0.0085297)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz077.txt
 
@@ -55763,17 +55763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz077.txt
 centroid = (0.7903636, -1.7885768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/sd/sdz078.txt
 description = Southern Perkins County, SD, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/sd/sdc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/sd/sdc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/sd/sdz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/sd/sdz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/sd/sdc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/sd/sdc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/sd/sdc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/sd/sdz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/sd/sdz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz078.txt
 station = ('kd07', 0.0071720)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz078.txt
 
@@ -55781,17 +55781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz078.txt
 centroid = (0.6341689, -1.5619562)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz001.txt
 description = Lake County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz001.txt
 station = ('kdyr', 0.0059968)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz001.txt
 
@@ -55799,17 +55799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz001.txt
 centroid = (0.6345703, -1.5559401)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz002.txt
 description = Obion County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz002.txt
 station = ('kucy', 0.0023330)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz002.txt
 
@@ -55817,17 +55817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz002.txt
 centroid = (0.6335248, -1.5484177)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz003.txt
 description = Weakley County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz003.txt
 station = ('kucy', 0.0040345)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz003.txt
 
@@ -55835,17 +55835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz003.txt
 centroid = (0.6341078, -1.5411484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz004.txt
 description = Henry County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz004.txt
 station = ('kpht', 0.0011528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz004.txt
 
@@ -55853,17 +55853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz004.txt
 centroid = (0.6370661, -1.5330710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz005.txt
 description = Stewart County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz005.txt
 station = ('keod', 0.0051508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz005.txt
 
@@ -55871,17 +55871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz005.txt
 centroid = (0.6369911, -1.5251193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz006.txt
 description = Montgomery County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz006.txt
 station = ('keod', 0.0018530)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz006.txt
 
@@ -55889,17 +55889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz006.txt
 centroid = (0.6374885, -1.5161762)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz007.txt
 description = Robertson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz007.txt
 station = ('km91', 0.0007322)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz007.txt
 
@@ -55907,17 +55907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz007.txt
 centroid = (0.6365111, -1.5090169)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz008.txt
 description = Sumner County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz008.txt
 station = ('kxnx', 0.0018003)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz008.txt
 
@@ -55925,17 +55925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz008.txt
 centroid = (0.6376037, -1.5011088)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz009.txt
 description = Macon County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz009.txt
 station = ('k1m5', 0.0066667)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz009.txt
 
@@ -55943,17 +55943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz009.txt
 centroid = (0.6379370, -1.4930210)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz010.txt
 description = Clay County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz010.txt
 station = ('k8a3', 0.0040624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz010.txt
 
@@ -55961,17 +55961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz010.txt
 centroid = (0.6380662, -1.4848354)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz011.txt
 description = Pickett County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz011.txt
 station = ('k8a3', 0.0041917)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz011.txt
 
@@ -55979,17 +55979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz011.txt
 centroid = (0.6357990, -1.4748643)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz012.txt
 description = Scott County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz012.txt
 station = ('kscx', 0.0012466)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz012.txt
 
@@ -55997,17 +55997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz012.txt
 centroid = (0.6353627, -1.4686823)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz013.txt
 description = Campbell County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz013.txt
 station = ('kjau', 0.0012286)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz013.txt
 
@@ -56015,17 +56015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz013.txt
 centroid = (0.6367991, -1.4601494)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz014.txt
 description = Claiborne County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz014.txt
 station = ('k1a6', 0.0024277)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz014.txt
 
@@ -56033,17 +56033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz014.txt
 centroid = (0.6374571, -1.4524962)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz015.txt
 description = Hancock County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz015.txt
 station = ('k0vg', 0.0022747)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz015.txt
 
@@ -56051,17 +56051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz015.txt
 centroid = (0.6360189, -1.4476581)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz016.txt
 description = Hawkins County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz016.txt
 station = ('kgcy', 0.0046773)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz016.txt
 
@@ -56069,17 +56069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz016.txt
 centroid = (0.6372703, -1.4364793)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz017.txt
 description = Sullivan County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz017.txt
 station = ('ktri', 0.0015678)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz017.txt
 
@@ -56087,17 +56087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz017.txt
 centroid = (0.6362580, -1.4285834)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz018.txt
 description = Johnson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz018.txt
 station = ('kvji', 0.0047298)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz018.txt
 
@@ -56105,17 +56105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz018.txt
 centroid = (0.6293483, -1.5605652)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz019.txt
 description = Dyer County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz019.txt
 station = ('kdyr', 0.0010480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz019.txt
 
@@ -56123,17 +56123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz019.txt
 centroid = (0.6282592, -1.5521667)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz020.txt
 description = Gibson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz020.txt
 station = ('kdyr', 0.0066001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz020.txt
 
@@ -56141,17 +56141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz020.txt
 centroid = (0.6278490, -1.5437472)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz021.txt
 description = Carroll County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz021.txt
 station = ('khzd', 0.0020365)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz021.txt
 
@@ -56159,17 +56159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz021.txt
 centroid = (0.6295368, -1.5370818)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz022.txt
 description = Benton County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz022.txt
 station = ('khzd', 0.0055822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz022.txt
 
@@ -56177,17 +56177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz022.txt
 centroid = (0.6333102, -1.5309522)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz023.txt
 description = Houston County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz023.txt
 station = ('km02', 0.0048964)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz023.txt
 
@@ -56195,17 +56195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz023.txt
 centroid = (0.6290306, -1.5319750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz024.txt
 description = Humphreys County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz024.txt
 station = ('km02', 0.0051107)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz024.txt
 
@@ -56213,17 +56213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz024.txt
 centroid = (0.6309208, -1.5246620)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz025.txt
 description = Dickson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz025.txt
 station = ('km02', 0.0010942)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz025.txt
 
@@ -56231,17 +56231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz025.txt
 centroid = (0.6328773, -1.5199514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz026.txt
 description = Cheatham County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz026.txt
 station = ('kjwn', 0.0031352)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz026.txt
 
@@ -56249,17 +56249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz026.txt
 centroid = (0.6312751, -1.5146805)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz027.txt
 description = Davidson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz027.txt
 station = ('kbna', 0.0017007)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz027.txt
 
@@ -56267,17 +56267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz027.txt
 centroid = (0.6310220, -1.5061773)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz028.txt
 description = Wilson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz028.txt
 station = ('km54', 0.0006700)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz028.txt
 
@@ -56285,17 +56285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz028.txt
 centroid = (0.6351620, -1.5037181)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz029.txt
 description = Trousdale County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz029.txt
 station = ('km54', 0.0041708)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz029.txt
 
@@ -56303,17 +56303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz029.txt
 centroid = (0.6326906, -1.5002274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz030.txt
 description = Smith County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz030.txt
 station = ('km54', 0.0051625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz030.txt
 
@@ -56321,17 +56321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz030.txt
 centroid = (0.6345878, -1.4952794)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz031.txt
 description = Jackson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz031.txt
 station = ('k8a3', 0.0051639)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz031.txt
 
@@ -56339,17 +56339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz031.txt
 centroid = (0.6307760, -1.4921710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz032.txt
 description = Putnam County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz032.txt
 station = ('ksrb', 0.0015645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz032.txt
 
@@ -56357,17 +56357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz032.txt
 centroid = (0.6343399, -1.4885582)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz033.txt
 description = Overton County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz033.txt
 station = ('k8a3', 0.0012168)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz033.txt
 
@@ -56375,17 +56375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz033.txt
 centroid = (0.6349595, -1.4823500)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz034.txt
 description = Fentress County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz034.txt
 station = ('k8a3', 0.0053557)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz034.txt
 
@@ -56393,17 +56393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz034.txt
 centroid = (0.6306747, -1.4774055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz035.txt
 description = Morgan County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz035.txt
 station = ('krkw', 0.0037563)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz035.txt
 
@@ -56411,17 +56411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz035.txt
 centroid = (0.6303850, -1.4695411)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz036.txt
 description = Anderson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz036.txt
 station = ('koqt', 0.0018423)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz036.txt
 
@@ -56429,17 +56429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz036.txt
 centroid = (0.6333433, -1.4632404)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz037.txt
 description = Union County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz037.txt
 station = ('kdkx', 0.0056216)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz037.txt
 
@@ -56447,17 +56447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz037.txt
 centroid = (0.6331391, -1.4575175)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz038.txt
 description = Grainger County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz038.txt
 station = ('kmor', 0.0025335)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz038.txt
 
@@ -56465,17 +56465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz038.txt
 centroid = (0.6321094, -1.4532763)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz039.txt
 description = Hamblen County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz039.txt
 station = ('kmor', 0.0016697)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz039.txt
 
@@ -56483,17 +56483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz039.txt
 centroid = (0.6280306, -1.4513041)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz040.txt
 description = Northwest Cocke County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz040.txt
 station = ('kmor', 0.0046355)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz040.txt
 
@@ -56501,17 +56501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz040.txt
 centroid = (0.6255557, -1.4499201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz041.txt
 description = Cocke Smoky Mountains, Cocke County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz041.txt
 station = ('kgcy', 0.0072060)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz041.txt
 
@@ -56519,17 +56519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz041.txt
 centroid = (0.6318249, -1.4460629)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz042.txt
 description = Northwest Greene County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz042.txt
 station = ('kgcy', 0.0005961)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz042.txt
 
@@ -56537,17 +56537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz042.txt
 centroid = (0.6285384, -1.4450977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz043.txt
 description = Southeast Greene County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz043.txt
 station = ('kgcy', 0.0032004)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz043.txt
 
@@ -56555,17 +56555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz043.txt
 centroid = (0.6334376, -1.4398513)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz044.txt
 description = Washington County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz044.txt
 station = ('ktri', 0.0033210)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz044.txt
 
@@ -56573,17 +56573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz044.txt
 centroid = (0.6302524, -1.4387150)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz045.txt
 description = Unicoi County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz045.txt
 station = ('kgcy', 0.0055450)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz045.txt
 
@@ -56591,17 +56591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz045.txt
 centroid = (0.6348042, -1.4340201)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz046.txt
 description = Northwest Carter County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz046.txt
 station = ('ktri', 0.0037154)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz046.txt
 
@@ -56609,17 +56609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz046.txt
 centroid = (0.6323398, -1.4328979)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz047.txt
 description = Southeast Carter County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz047.txt
 station = ('ktri', 0.0059083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz047.txt
 
@@ -56627,17 +56627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz047.txt
 centroid = (0.6241454, -1.5643630)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz048.txt
 description = Lauderdale County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz048.txt
 station = ('km04', 0.0031607)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz048.txt
 
@@ -56645,17 +56645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz048.txt
 centroid = (0.6195325, -1.5665971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz049.txt
 description = Tipton County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz049.txt
 station = ('km04', 0.0028768)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz049.txt
 
@@ -56663,17 +56663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz049.txt
 centroid = (0.6210457, -1.5582963)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz050.txt
 description = Haywood County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz050.txt
 station = ('km04', 0.0043065)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz050.txt
 
@@ -56681,17 +56681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz050.txt
 centroid = (0.6250635, -1.5557778)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz051.txt
 description = Crockett County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz051.txt
 station = ('kmkl', 0.0048845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz051.txt
 
@@ -56699,17 +56699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz051.txt
 centroid = (0.6214803, -1.5505243)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz052.txt
 description = Madison County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz052.txt
 station = ('kmkl', 0.0011184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz052.txt
 
@@ -56717,17 +56717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz052.txt
 centroid = (0.6182148, -1.5465851)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz053.txt
 description = Chester County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz053.txt
 station = ('kszy', 0.0041422)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz053.txt
 
@@ -56735,17 +56735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz053.txt
 centroid = (0.6222849, -1.5426616)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz054.txt
 description = Henderson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz054.txt
 station = ('kpve', 0.0027316)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz054.txt
 
@@ -56753,17 +56753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz054.txt
 centroid = (0.6213896, -1.5377887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz055.txt
 description = Decatur County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz055.txt
 station = ('kpve', 0.0015420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz055.txt
 
@@ -56771,17 +56771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz055.txt
 centroid = (0.6220807, -1.5334288)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz056.txt
 description = Perry County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz056.txt
 station = ('kpve', 0.0047770)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz056.txt
 
@@ -56789,17 +56789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz056.txt
 centroid = (0.6248855, -1.5266971)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz057.txt
 description = Hickman County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz057.txt
 station = ('km02', 0.0057003)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz057.txt
 
@@ -56807,17 +56807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz057.txt
 centroid = (0.6200684, -1.5270427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz058.txt
 description = Lewis County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz058.txt
 station = ('kmrc', 0.0044172)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz058.txt
 
@@ -56825,17 +56825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz058.txt
 centroid = (0.6264650, -1.5166684)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz059.txt
 description = Williamson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz059.txt
 station = ('kbna', 0.0049373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz059.txt
 
@@ -56843,17 +56843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz059.txt
 centroid = (0.6216339, -1.5197804)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz060.txt
 description = Maury County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz060.txt
 station = ('kmrc', 0.0019093)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz060.txt
 
@@ -56861,17 +56861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz060.txt
 centroid = (0.6190491, -1.5143367)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz061.txt
 description = Marshall County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz061.txt
 station = ('klug', 0.0008639)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz061.txt
 
@@ -56879,17 +56879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz061.txt
 centroid = (0.6255731, -1.5082559)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz062.txt
 description = Rutherford County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz062.txt
 station = ('kmbt', 0.0008224)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz062.txt
 
@@ -56897,17 +56897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz062.txt
 centroid = (0.6249797, -1.5020600)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz063.txt
 description = Cannon County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz063.txt
 station = ('krnc', 0.0036347)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz063.txt
 
@@ -56915,17 +56915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz063.txt
 centroid = (0.6279660, -1.4980650)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz064.txt
 description = De Kalb County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz064.txt
 station = ('krnc', 0.0049086)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz064.txt
 
@@ -56933,17 +56933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz064.txt
 centroid = (0.6270340, -1.4914763)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz065.txt
 description = White County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz065.txt
 station = ('ksrb', 0.0024985)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz065.txt
 
@@ -56951,17 +56951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz065.txt
 centroid = (0.6274528, -1.4835002)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz066.txt
 description = Cumberland County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz066.txt
 station = ('kcsv', 0.0012014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz066.txt
 
@@ -56969,17 +56969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz066.txt
 centroid = (0.6256621, -1.4752099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz067.txt
 description = Roane County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz067.txt
 station = ('krkw', 0.0026883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz067.txt
 
@@ -56987,17 +56987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz067.txt
 centroid = (0.6236934, -1.4715150)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz068.txt
 description = Loudon County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz068.txt
 station = ('kmnv', 0.0034493)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz068.txt
 
@@ -57005,17 +57005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz068.txt
 centroid = (0.6281998, -1.4649788)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz069.txt
 description = Knox County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz069.txt
 station = ('kdkx', 0.0010973)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz069.txt
 
@@ -57023,17 +57023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz069.txt
 centroid = (0.6292086, -1.4564127)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz070.txt
 description = Jefferson County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz070.txt
 station = ('kmor', 0.0024533)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz070.txt
 
@@ -57041,17 +57041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz070.txt
 centroid = (0.6235206, -1.4653854)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz071.txt
 description = NW Blount County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz071.txt
 station = ('ktys', 0.0016308)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz071.txt
 
@@ -57059,17 +57059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz071.txt
 centroid = (0.6210772, -1.4631357)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz072.txt
 description = Blount Smoky Mountains, Blount County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz072.txt
 station = ('ktys', 0.0045788)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz072.txt
 
@@ -57077,17 +57077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz072.txt
 centroid = (0.6256499, -1.4583483)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz073.txt
 description = North Sevier County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz073.txt
 station = ('kgkt', 0.0004443)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz073.txt
 
@@ -57095,17 +57095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz073.txt
 centroid = (0.6226392, -1.4567548)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz074.txt
 description = Sevier Smoky Mountains, Sevier County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz074.txt
 station = ('kgkt', 0.0033188)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz074.txt
 
@@ -57113,17 +57113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz074.txt
 centroid = (0.6198327, -1.5089925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz075.txt
 description = Bedford County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz075.txt
 station = ('ksyi', 0.0008410)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz075.txt
 
@@ -57131,17 +57131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz075.txt
 centroid = (0.6158342, -1.5072454)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz076.txt
 description = Moore County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz076.txt
 station = ('ktha', 0.0023095)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz076.txt
 
@@ -57149,17 +57149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz076.txt
 centroid = (0.6194278, -1.5022887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz077.txt
 description = Coffee County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz077.txt
 station = ('ktha', 0.0031103)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz077.txt
 
@@ -57167,17 +57167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz077.txt
 centroid = (0.6227108, -1.4971173)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz078.txt
 description = Warren County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz078.txt
 station = ('krnc', 0.0009893)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz078.txt
 
@@ -57185,17 +57185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz078.txt
 centroid = (0.6176441, -1.4961416)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz079.txt
 description = Grundy County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz079.txt
 station = ('krnc', 0.0056827)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz079.txt
 
@@ -57203,17 +57203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz079.txt
 centroid = (0.6230127, -1.4914275)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz080.txt
 description = Van Buren County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz080.txt
 station = ('krnc', 0.0055465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz080.txt
 
@@ -57221,17 +57221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz080.txt
 centroid = (0.6173439, -1.4906962)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz081.txt
 description = Sequatchie County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz081.txt
 station = ('kcha', 0.0066177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz081.txt
 
@@ -57239,17 +57239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz081.txt
 centroid = (0.6212744, -1.4871095)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz082.txt
 description = Bledsoe County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz082.txt
 station = ('k2a0', 0.0043407)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz082.txt
 
@@ -57257,17 +57257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz082.txt
 centroid = (0.6214891, -1.4822104)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz083.txt
 description = Rhea County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz083.txt
 station = ('k2a0', 0.0021402)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz083.txt
 
@@ -57275,17 +57275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz083.txt
 centroid = (0.6198135, -1.4802748)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz084.txt
 description = Meigs County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz084.txt
 station = ('k2a0', 0.0017338)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz084.txt
 
@@ -57293,17 +57293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz084.txt
 centroid = (0.6182794, -1.4768540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz085.txt
 description = McMinn County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz085.txt
 station = ('kmmi', 0.0009166)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz085.txt
 
@@ -57311,17 +57311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz085.txt
 centroid = (0.6193493, -1.4714784)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz086.txt
 description = Northwest Monroe County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz086.txt
 station = ('kmnv', 0.0014422)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz086.txt
 
@@ -57329,17 +57329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz086.txt
 centroid = (0.6170263, -1.4684380)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz087.txt
 description = Southeast Monroe County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz087.txt
 station = ('krhp', 0.0047530)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz087.txt
 
@@ -57347,17 +57347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz087.txt
 centroid = (0.6140714, -1.5689742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz088.txt
 description = Shelby County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz088.txt
 station = ('k2m8', 0.0017403)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz088.txt
 
@@ -57365,17 +57365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz088.txt
 centroid = (0.6143053, -1.5605757)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz089.txt
 description = Fayette County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz089.txt
 station = ('kfye', 0.0003388)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz089.txt
 
@@ -57383,17 +57383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz089.txt
 centroid = (0.6144763, -1.5532226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz090.txt
 description = Hardeman County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz090.txt
 station = ('km08', 0.0007295)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz090.txt
 
@@ -57401,17 +57401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz090.txt
 centroid = (0.6139126, -1.5457282)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz091.txt
 description = McNairy County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz091.txt
 station = ('kszy', 0.0010543)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz091.txt
 
@@ -57419,17 +57419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz091.txt
 centroid = (0.6143332, -1.5391099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz092.txt
 description = Hardin County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz092.txt
 station = ('ksnh', 0.0006668)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz092.txt
 
@@ -57437,17 +57437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz092.txt
 centroid = (0.6150540, -1.5321896)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz093.txt
 description = Wayne County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz093.txt
 station = ('ksnh', 0.0062219)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz093.txt
 
@@ -57455,17 +57455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz093.txt
 centroid = (0.6146578, -1.5253410)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz094.txt
 description = Lawrence County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz094.txt
 station = ('k2m2', 0.0019856)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz094.txt
 
@@ -57473,17 +57473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz094.txt
 centroid = (0.6143943, -1.5190438)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz095.txt
 description = Giles County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz095.txt
 station = ('kgzs', 0.0009028)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz095.txt
 
@@ -57491,17 +57491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz095.txt
 centroid = (0.6133174, -1.5112614)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz096.txt
 description = Lincoln County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz096.txt
 station = ('kfym', 0.0014543)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz096.txt
 
@@ -57509,17 +57509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz096.txt
 centroid = (0.6135688, -1.5025924)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz097.txt
 description = Franklin County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz097.txt
 station = ('kbgf', 0.0005415)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz097.txt
 
@@ -57527,17 +57527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz097.txt
 centroid = (0.6131237, -1.4943858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz098.txt
 description = Marion County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz098.txt
 station = ('kbgf', 0.0063941)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz098.txt
 
@@ -57545,17 +57545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz098.txt
 centroid = (0.6140225, -1.4864062)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz099.txt
 description = Hamilton County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz099.txt
 station = ('kcha', 0.0026241)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz099.txt
 
@@ -57563,17 +57563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz099.txt
 centroid = (0.6135548, -1.4810794)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz100.txt
 description = Bradley County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz100.txt
 station = ('krzr', 0.0013160)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz100.txt
 
@@ -57581,17 +57581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz100.txt
 centroid = (0.6133366, -1.4764386)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz101.txt
 description = West Polk County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz101.txt
 station = ('krzr', 0.0031829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz101.txt
 
@@ -57599,17 +57599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz101.txt
 centroid = (0.6123575, -1.4732551)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tn/tnz102.txt
 description = East Polk County, TN, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tn/tnc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tn/tnc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tn/tnz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tn/tnz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tn/tnc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tn/tnc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tn/tnc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tn/tnz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tn/tnz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz102.txt
 station = ('kmmi', 0.0058537)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz102.txt
 
@@ -57617,17 +57617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz102.txt
 centroid = (0.6331688, -1.7907462)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz001.txt
 description = Dallam County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz001.txt
 station = ('kdht', 0.0046184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz001.txt
 
@@ -57635,17 +57635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz001.txt
 centroid = (0.6331653, -1.7783771)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz002.txt
 description = Sherman County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc421.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc421.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc421.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc421.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc421.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz002.txt
 station = ('kdux', 0.0075206)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc421.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz002.txt
 
@@ -57653,17 +57653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz002.txt
 centroid = (0.6331618, -1.7689697)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz003.txt
 description = Hansford County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc195.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc195.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc195.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc195.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc195.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz003.txt
 station = ('kguy', 0.0073716)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc195.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz003.txt
 
@@ -57671,17 +57671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz003.txt
 centroid = (0.6331775, -1.7595642)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz004.txt
 description = Ochiltree County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc357.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc357.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc357.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc357.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc357.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz004.txt
 station = ('kpyx', 0.0024170)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc357.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz004.txt
 
@@ -57689,17 +57689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz004.txt
 centroid = (0.6331653, -1.7500957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz005.txt
 description = Lipscomb County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc295.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc295.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc295.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc295.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc295.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz005.txt
 station = ('khhf', 0.0068308)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc295.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz005.txt
 
@@ -57707,17 +57707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz005.txt
 centroid = (0.6255260, -1.7907584)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz006.txt
 description = Hartley County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc205.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc205.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc205.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc205.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc205.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz006.txt
 station = ('kdht', 0.0031728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc205.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz006.txt
 
@@ -57725,17 +57725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz006.txt
 centroid = (0.6254859, -1.7783666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz007.txt
 description = Moore County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc341.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc341.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc341.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc341.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc341.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz007.txt
 station = ('kdux', 0.0017356)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc341.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz007.txt
 
@@ -57743,17 +57743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz007.txt
 centroid = (0.6255260, -1.7689732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz008.txt
 description = Hutchinson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc233.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc233.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc233.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc233.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc233.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz008.txt
 station = ('kbgd', 0.0025263)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc233.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz008.txt
 
@@ -57761,17 +57761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz008.txt
 centroid = (0.6254998, -1.7595258)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz009.txt
 description = Roberts County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc393.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc393.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc393.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc393.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc393.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz009.txt
 station = ('kbpc', 0.0031879)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc393.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz009.txt
 
@@ -57779,17 +57779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz009.txt
 centroid = (0.6254841, -1.7500504)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz010.txt
 description = Hemphill County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc211.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc211.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc211.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc211.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc211.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz010.txt
 station = ('khhf', 0.0021309)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc211.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz010.txt
 
@@ -57797,17 +57797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz010.txt
 centroid = (0.6179338, -1.7907584)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz011.txt
 description = Oldham County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc359.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc359.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc359.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc359.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc359.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz011.txt
 station = ('khrx', 0.0103360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc359.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz011.txt
 
@@ -57815,17 +57815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz011.txt
 centroid = (0.6178692, -1.7783858)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz012.txt
 description = Potter County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc375.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc375.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc375.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc375.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc375.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz012.txt
 station = ('kama', 0.0040943)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc375.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz012.txt
 
@@ -57833,17 +57833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz012.txt
 centroid = (0.6179076, -1.7689645)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz013.txt
 description = Carson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz013.txt
 station = ('kbgd', 0.0052156)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz013.txt
 
@@ -57851,17 +57851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz013.txt
 centroid = (0.6178675, -1.7595118)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz014.txt
 description = Gray County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz014.txt
 station = ('kppa', 0.0045204)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz014.txt
 
@@ -57869,17 +57869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz014.txt
 centroid = (0.6178692, -1.7500364)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz015.txt
 description = Wheeler County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc483.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc483.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc483.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc483.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc483.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz015.txt
 station = ('khhf', 0.0088980)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc483.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz015.txt
 
@@ -57887,17 +57887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz015.txt
 centroid = (0.6102718, -1.7907933)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz016.txt
 description = Deaf Smith County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz016.txt
 station = ('khrx', 0.0044159)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz016.txt
 
@@ -57905,17 +57905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz016.txt
 centroid = (0.6102875, -1.7786179)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz017.txt
 description = Randall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc381.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc381.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc381.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc381.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc381.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz017.txt
 station = ('kama', 0.0051395)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc381.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz017.txt
 
@@ -57923,17 +57923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz017.txt
 centroid = (0.6102526, -1.7690204)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz018.txt
 description = Armstrong County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz018.txt
 station = ('kama', 0.0067552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz018.txt
 
@@ -57941,17 +57941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz018.txt
 centroid = (0.6102614, -1.7595362)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz019.txt
 description = Donley County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz019.txt
 station = ('kppa', 0.0115929)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz019.txt
 
@@ -57959,17 +57959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz019.txt
 centroid = (0.6102526, -1.7500434)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz020.txt
 description = Collingsworth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz020.txt
 station = ('kcds', 0.0092795)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz020.txt
 
@@ -57977,17 +57977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz020.txt
 centroid = (0.6026639, -1.7939279)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz021.txt
 description = Parmer County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc369.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc369.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc369.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc369.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc369.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz021.txt
 station = ('kcvn', 0.0046191)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc369.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz021.txt
 
@@ -57995,17 +57995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz021.txt
 centroid = (0.6026622, -1.7848034)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz022.txt
 description = Castro County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz022.txt
 station = ('khrx', 0.0057951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz022.txt
 
@@ -58013,17 +58013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz022.txt
 centroid = (0.6026692, -1.7756107)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz023.txt
 description = Swisher County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc437.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc437.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc437.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc437.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc437.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz023.txt
 station = ('kpvw', 0.0063293)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc437.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz023.txt
 
@@ -58031,17 +58031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz023.txt
 centroid = (0.6026674, -1.7664233)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz024.txt
 description = Briscoe County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz024.txt
 station = ('kpvw', 0.0096792)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz024.txt
 
@@ -58049,17 +58049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz024.txt
 centroid = (0.6026762, -1.7572167)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz025.txt
 description = Hall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc191.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc191.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc191.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc191.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc191.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz025.txt
 station = ('kcds', 0.0059701)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc191.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz025.txt
 
@@ -58067,17 +58067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz025.txt
 centroid = (0.6026482, -1.7489526)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz026.txt
 description = Childress County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz026.txt
 station = ('kcds', 0.0019967)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz026.txt
 
@@ -58085,17 +58085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz026.txt
 centroid = (0.5946075, -1.7947186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz027.txt
 description = Bailey County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz027.txt
 station = ('kcvn', 0.0073433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz027.txt
 
@@ -58103,17 +58103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz027.txt
 centroid = (0.5946092, -1.7863742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz028.txt
 description = Lamb County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc279.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc279.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc279.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc279.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc279.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz028.txt
 station = ('klln', 0.0090124)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc279.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz028.txt
 
@@ -58121,17 +58121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz028.txt
 centroid = (0.5946424, -1.7772147)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz029.txt
 description = Hale County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc189.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc189.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc189.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc189.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc189.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz029.txt
 station = ('kpvw', 0.0023260)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc189.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz029.txt
 
@@ -58139,17 +58139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz029.txt
 centroid = (0.5946756, -1.7680744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz030.txt
 description = Floyd County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz030.txt
 station = ('kpvw', 0.0062108)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz030.txt
 
@@ -58157,17 +58157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz030.txt
 centroid = (0.5947052, -1.7589393)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz031.txt
 description = Motley County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc345.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc345.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc345.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc345.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc345.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz031.txt
 station = ('kcds', 0.0095187)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc345.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz031.txt
 
@@ -58175,17 +58175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz031.txt
 centroid = (0.5947663, -1.7501952)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz032.txt
 description = Cottle County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz032.txt
 station = ('kcds', 0.0062091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz032.txt
 
@@ -58193,17 +58193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz032.txt
 centroid = (0.5865022, -1.7946959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz033.txt
 description = Cochran County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz033.txt
 station = ('klln', 0.0066987)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz033.txt
 
@@ -58211,17 +58211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz033.txt
 centroid = (0.5865633, -1.7862258)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz034.txt
 description = Hockley County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc219.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc219.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc219.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc219.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc219.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz034.txt
 station = ('klln', 0.0010489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc219.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz034.txt
 
@@ -58229,17 +58229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz034.txt
 centroid = (0.5866087, -1.7771030)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz035.txt
 description = Lubbock County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc303.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc303.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc303.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc303.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc303.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz035.txt
 station = ('klbb', 0.0009871)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc303.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz035.txt
 
@@ -58247,17 +58247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz035.txt
 centroid = (0.5866854, -1.7680185)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz036.txt
 description = Crosby County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz036.txt
 station = ('klbb', 0.0075621)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz036.txt
 
@@ -58265,17 +58265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz036.txt
 centroid = (0.5867204, -1.7589236)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz037.txt
 description = Dickens County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz037.txt
 station = ('kcds', 0.0159556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz037.txt
 
@@ -58283,17 +58283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz037.txt
 centroid = (0.5867186, -1.7497938)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz038.txt
 description = King County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc269.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc269.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc269.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc269.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc269.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz038.txt
 station = ('kcds', 0.0142620)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc269.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz038.txt
 
@@ -58301,17 +58301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz038.txt
 centroid = (0.5789781, -1.7946837)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz039.txt
 description = Yoakum County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc501.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc501.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc501.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc501.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc501.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz039.txt
 station = ('ke57', 0.0034367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc501.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz039.txt
 
@@ -58319,17 +58319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz039.txt
 centroid = (0.5789920, -1.7860862)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz040.txt
 description = Terry County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc445.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc445.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc445.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc445.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc445.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz040.txt
 station = ('klln', 0.0066313)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc445.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz040.txt
 
@@ -58337,17 +58337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz040.txt
 centroid = (0.5790444, -1.7770262)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz041.txt
 description = Lynn County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc305.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc305.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc305.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc305.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc305.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz041.txt
 station = ('kluv', 0.0074951)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc305.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz041.txt
 
@@ -58355,17 +58355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz041.txt
 centroid = (0.5790985, -1.7679906)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz042.txt
 description = Garza County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz042.txt
 station = ('ksnk', 0.0099056)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz042.txt
 
@@ -58373,17 +58373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz042.txt
 centroid = (0.5791247, -1.7589009)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz043.txt
 description = Kent County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc263.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc263.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc263.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc263.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc263.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz043.txt
 station = ('ksnk', 0.0088860)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc263.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz043.txt
 
@@ -58391,17 +58391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz043.txt
 centroid = (0.5790845, -1.7497502)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz044.txt
 description = Stonewall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc433.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc433.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc433.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc433.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc433.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz044.txt
 station = ('ksww', 0.0128117)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc433.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz044.txt
 
@@ -58409,17 +58409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz044.txt
 centroid = (0.5714330, -1.7913222)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz045.txt
 description = Gaines County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc165.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc165.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc165.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc165.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc165.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz045.txt
 station = ('kgnc', 0.0011698)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc165.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz045.txt
 
@@ -58427,17 +58427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz045.txt
 centroid = (0.5714644, -1.7793230)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz046.txt
 description = Dawson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz046.txt
 station = ('kluv', 0.0004726)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz046.txt
 
@@ -58445,17 +58445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz046.txt
 centroid = (0.5714854, -1.7703171)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz047.txt
 description = Borden County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz047.txt
 station = ('kluv', 0.0071710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz047.txt
 
@@ -58463,17 +58463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz047.txt
 centroid = (0.5715308, -1.7613234)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz048.txt
 description = Scurry County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc415.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc415.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc415.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc415.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc415.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz048.txt
 station = ('ksnk', 0.0010498)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc415.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz048.txt
 
@@ -58481,17 +58481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz048.txt
 centroid = (0.5714697, -1.7523490)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz049.txt
 description = Fisher County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc151.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc151.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc151.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc151.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc151.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz049.txt
 station = ('ksww', 0.0049015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc151.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz049.txt
 
@@ -58499,17 +58499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz049.txt
 centroid = (0.5638286, -1.7913675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz050.txt
 description = Andrews County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz050.txt
 station = ('ke11', 0.0016619)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz050.txt
 
@@ -58517,17 +58517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz050.txt
 centroid = (0.5638478, -1.7793841)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz051.txt
 description = Martin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc317.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc317.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc317.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc317.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc317.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz051.txt
 station = ('kmdd', 0.0052006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc317.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz051.txt
 
@@ -58535,17 +58535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz051.txt
 centroid = (0.5638496, -1.7703835)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz052.txt
 description = Howard County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc227.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc227.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc227.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc227.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc227.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz052.txt
 station = ('kbpg', 0.0022070)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc227.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz052.txt
 
@@ -58553,17 +58553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz052.txt
 centroid = (0.5638496, -1.7614072)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz053.txt
 description = Mitchell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc335.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc335.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc335.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc335.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc335.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz053.txt
 station = ('ksnk', 0.0067703)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc335.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz053.txt
 
@@ -58571,17 +58571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz053.txt
 centroid = (0.5638024, -1.7524170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz054.txt
 description = Nolan County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc353.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc353.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc353.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc353.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc353.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz054.txt
 station = ('ksww', 0.0029925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc353.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz054.txt
 
@@ -58589,17 +58589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz054.txt
 centroid = (0.5558734, -1.8078120)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz059.txt
 description = Loving County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc301.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc301.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc301.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc301.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc301.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz059.txt
 station = ('kink', 0.0057518)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc301.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz059.txt
 
@@ -58607,17 +58607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz059.txt
 centroid = (0.5558874, -1.7985304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz060.txt
 description = Winkler County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc495.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc495.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc495.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc495.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc495.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz060.txt
 station = ('kink', 0.0025342)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc495.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz060.txt
 
@@ -58625,17 +58625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz060.txt
 centroid = (0.5562225, -1.7897095)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz061.txt
 description = Ector County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz061.txt
 station = ('kodo', 0.0022725)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz061.txt
 
@@ -58643,17 +58643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz061.txt
 centroid = (0.5562225, -1.7807874)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz062.txt
 description = Midland County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc329.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc329.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc329.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc329.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc329.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz062.txt
 station = ('kmaf', 0.0027348)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc329.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz062.txt
 
@@ -58661,17 +58661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz062.txt
 centroid = (0.5562277, -1.7718722)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz063.txt
 description = Glasscock County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz063.txt
 station = ('kbpg', 0.0057686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz063.txt
 
@@ -58679,17 +58679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz063.txt
 centroid = (0.5555016, -1.7636552)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz064.txt
 description = Sterling County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc431.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc431.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc431.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc431.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc431.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz064.txt
 station = ('kbpg', 0.0094801)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc431.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz064.txt
 
@@ -58697,17 +58697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz064.txt
 centroid = (0.5565593, -1.7545778)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz065.txt
 description = Coke County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz065.txt
 station = ('ksjt', 0.0094091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz065.txt
 
@@ -58715,17 +58715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz065.txt
 centroid = (0.5555575, -1.7449139)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz066.txt
 description = Runnels County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc399.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc399.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc399.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc399.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc399.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz066.txt
 station = ('kcom', 0.0084920)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc399.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz066.txt
 
@@ -58733,17 +58733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz066.txt
 centroid = (0.5499445, -1.7994763)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz067.txt
 description = Ward County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc475.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc475.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc475.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc475.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc475.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz067.txt
 station = ('kink', 0.0049945)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc475.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz067.txt
 
@@ -58751,17 +58751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz067.txt
 centroid = (0.5485308, -1.7892330)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz068.txt
 description = Crane County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz068.txt
 station = ('kodo', 0.0086911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz068.txt
 
@@ -58769,17 +58769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz068.txt
 centroid = (0.5474888, -1.7809863)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz069.txt
 description = Upton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc461.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc461.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc461.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc461.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc461.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz069.txt
 station = ('ke41', 0.0090112)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc461.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz069.txt
 
@@ -58787,17 +58787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz069.txt
 centroid = (0.5474435, -1.7719106)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz070.txt
 description = Reagan County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc383.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc383.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc383.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc383.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc383.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz070.txt
 station = ('ke41', 0.0030163)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc383.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz070.txt
 
@@ -58805,17 +58805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz070.txt
 centroid = (0.5463561, -1.7624754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz071.txt
 description = Irion County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc235.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc235.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc235.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc235.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc235.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz071.txt
 station = ('ke41', 0.0075393)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc235.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz071.txt
 
@@ -58823,17 +58823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz071.txt
 centroid = (0.5481102, -1.7533944)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz072.txt
 description = Tom Green County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc451.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc451.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc451.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc451.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc451.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz072.txt
 station = ('ksjt', 0.0011047)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc451.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz072.txt
 
@@ -58841,17 +58841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz072.txt
 centroid = (0.5467506, -1.7429556)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz073.txt
 description = Concho County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz073.txt
 station = ('kbbd', 0.0084591)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz073.txt
 
@@ -58859,17 +58859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz073.txt
 centroid = (0.5372315, -1.7928650)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz075.txt
 description = Pecos County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc371.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc371.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc371.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc371.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc371.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz075.txt
 station = ('kfst', 0.0037373)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc371.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz075.txt
 
@@ -58877,17 +58877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz075.txt
 centroid = (0.5362175, -1.7699750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz076.txt
 description = Crockett County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz076.txt
 station = ('koza', 0.0031444)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz076.txt
 
@@ -58895,17 +58895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz076.txt
 centroid = (0.5392631, -1.7547279)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz077.txt
 description = Schleicher County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc413.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc413.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc413.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc413.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc413.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz077.txt
 station = ('ksoa', 0.0056883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc413.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz077.txt
 
@@ -58913,17 +58913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz077.txt
 centroid = (0.5322958, -1.7547226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz078.txt
 description = Sutton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc435.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc435.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc435.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc435.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc435.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz078.txt
 station = ('ksoa', 0.0022494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc435.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz078.txt
 
@@ -58931,17 +58931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz078.txt
 centroid = (0.5275258, -1.7815710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz082.txt
 description = Terrell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc443.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc443.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc443.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc443.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc443.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz082.txt
 station = ('k6r6', 0.0037155)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc443.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz082.txt
 
@@ -58949,17 +58949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz082.txt
 centroid = (0.5984786, -1.7408909)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz083.txt
 description = Hardeman County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz083.txt
 station = ('kf05', 0.0067609)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz083.txt
 
@@ -58967,17 +58967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz083.txt
 centroid = (0.5929686, -1.7414546)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz084.txt
 description = Foard County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc155.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc155.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc155.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc155.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc155.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz084.txt
 station = ('kf05', 0.0083807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc155.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz084.txt
 
@@ -58985,17 +58985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz084.txt
 centroid = (0.5948204, -1.7320822)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz085.txt
 description = Wilbarger County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc487.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc487.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc487.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc487.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc487.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz085.txt
 station = ('kf05', 0.0026020)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc487.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz085.txt
 
@@ -59003,17 +59003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz085.txt
 centroid = (0.5932025, -1.7226958)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz086.txt
 description = Wichita County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc485.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc485.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc485.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc485.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc485.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz086.txt
 station = ('ksps', 0.0029418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc485.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz086.txt
 
@@ -59021,17 +59021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz086.txt
 centroid = (0.5865371, -1.7408158)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz087.txt
 description = Knox County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc275.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc275.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc275.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc275.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc275.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz087.txt
 station = ('kf05', 0.0126827)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc275.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz087.txt
 
@@ -59039,17 +59039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz087.txt
 centroid = (0.5867186, -1.7316022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz088.txt
 description = Baylor County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz088.txt
 station = ('kf05', 0.0106784)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz088.txt
 
@@ -59057,17 +59057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz088.txt
 centroid = (0.5866977, -1.7224253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz089.txt
 description = Archer County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz089.txt
 station = ('kcwc', 0.0051101)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz089.txt
 
@@ -59075,17 +59075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz089.txt
 centroid = (0.5896665, -1.7140599)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz090.txt
 description = Clay County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz090.txt
 station = ('kcwc', 0.0042798)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz090.txt
 
@@ -59093,17 +59093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz090.txt
 centroid = (0.5877518, -1.7056160)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz091.txt
 description = Montague County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz091.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz091.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc337.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc337.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz091.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz091.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz091.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz091.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz091.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc337.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc337.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc337.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz091.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz091.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz091.txt
 station = ('klud', 0.0076456)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc337.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz091.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz091.txt
 
@@ -59111,17 +59111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz091.txt
 centroid = (0.5871165, -1.6966799)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz092.txt
 description = Cooke County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz092.txt
 station = ('kgle', 0.0003103)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz092.txt
 
@@ -59129,17 +59129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz092.txt
 centroid = (0.5868984, -1.6873424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz093.txt
 description = Grayson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz093.txt
 station = ('kgyi', 0.0015765)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz093.txt
 
@@ -59147,17 +59147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz093.txt
 centroid = (0.5863242, -1.6773766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz094.txt
 description = Fannin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz094.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz094.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz094.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz094.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz094.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz094.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz094.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz094.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz094.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz094.txt
 station = ('kf00', 0.0011087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz094.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz094.txt
 
@@ -59165,17 +59165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz094.txt
 centroid = (0.5876017, -1.6680304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz095.txt
 description = Lamar County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc277.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc277.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc277.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc277.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc277.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz095.txt
 station = ('kprx', 0.0018555)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc277.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz095.txt
 
@@ -59183,17 +59183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz095.txt
 centroid = (0.5867919, -1.6589424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz096.txt
 description = Red River County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc387.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc387.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc387.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc387.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc387.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz096.txt
 station = ('k4o4', 0.0057486)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc387.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz096.txt
 
@@ -59201,17 +59201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz096.txt
 centroid = (0.5837323, -1.6479905)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz097.txt
 description = Bowie County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz097.txt
 station = ('kata', 0.0068552)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz097.txt
 
@@ -59219,17 +59219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz097.txt
 centroid = (0.5790688, -1.7406221)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz098.txt
 description = Haskell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc207.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc207.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc207.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc207.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc207.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz098.txt
 station = ('kabi', 0.0133091)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc207.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz098.txt
 
@@ -59237,17 +59237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz098.txt
 centroid = (0.5790566, -1.7315830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz099.txt
 description = Throckmorton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc447.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc447.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc447.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc447.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc447.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz099.txt
 station = ('kbkd', 0.0092841)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc447.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz099.txt
 
@@ -59255,17 +59255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz099.txt
 centroid = (0.5790426, -1.7224270)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz100.txt
 description = Young County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc503.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc503.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc503.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc503.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc503.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz100.txt
 station = ('krph', 0.0022596)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc503.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz100.txt
 
@@ -59273,17 +59273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz100.txt
 centroid = (0.5800340, -1.7134334)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz101.txt
 description = Jack County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc237.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc237.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc237.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc237.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc237.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz101.txt
 station = ('krph', 0.0059930)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc237.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz101.txt
 
@@ -59291,17 +59291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz101.txt
 centroid = (0.5797268, -1.7043908)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz102.txt
 description = Wise County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc497.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc497.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc497.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc497.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc497.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz102.txt
 station = ('klud', 0.0012707)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc497.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz102.txt
 
@@ -59309,17 +59309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz102.txt
 centroid = (0.5795244, -1.6950132)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz103.txt
 description = Denton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz103.txt
 station = ('kdto', 0.0012130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz103.txt
 
@@ -59327,17 +59327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz103.txt
 centroid = (0.5792364, -1.6855063)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz104.txt
 description = Collin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz104.txt
 station = ('ktki', 0.0001777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz104.txt
 
@@ -59345,17 +59345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz104.txt
 centroid = (0.5781159, -1.6770066)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz105.txt
 description = Hunt County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc231.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc231.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc231.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc231.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc231.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz105.txt
 station = ('kgvt', 0.0010307)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc231.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz105.txt
 
@@ -59363,17 +59363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz105.txt
 centroid = (0.5827009, -1.6697966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz106.txt
 description = Delta County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz106.txt
 station = ('kslr', 0.0040006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz106.txt
 
@@ -59381,17 +59381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz106.txt
 centroid = (0.5785679, -1.6679064)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz107.txt
 description = Hopkins County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc223.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc223.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc223.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc223.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc223.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz107.txt
 station = ('kslr', 0.0008587)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc223.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz107.txt
 
@@ -59399,17 +59399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz107.txt
 centroid = (0.5790235, -1.6618746)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz108.txt
 description = Franklin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz108.txt
 station = ('kosa', 0.0040093)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz108.txt
 
@@ -59417,17 +59417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz108.txt
 centroid = (0.5797390, -1.6574641)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz109.txt
 description = Titus County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc449.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc449.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc449.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc449.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc449.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz109.txt
 station = ('kosa', 0.0021184)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc449.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz109.txt
 
@@ -59435,17 +59435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz109.txt
 centroid = (0.5754909, -1.6576875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz110.txt
 description = Camp County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz110.txt
 station = ('kosa', 0.0021453)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz110.txt
 
@@ -59453,17 +59453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz110.txt
 centroid = (0.5779396, -1.6533958)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz111.txt
 description = Morris County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc343.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc343.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc343.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc343.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc343.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz111.txt
 station = ('kosa', 0.0033600)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc343.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz111.txt
 
@@ -59471,17 +59471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz111.txt
 centroid = (0.5773113, -1.6466064)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz112.txt
 description = Cass County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz112.txt
 station = ('kata', 0.0022097)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz112.txt
 
@@ -59489,17 +59489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz112.txt
 centroid = (0.5714191, -1.7432122)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz113.txt
 description = Jones County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc253.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc253.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc253.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc253.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc253.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz113.txt
 station = ('kdys', 0.0055925)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc253.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz113.txt
 
@@ -59507,17 +59507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz113.txt
 centroid = (0.5713510, -1.7340562)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz114.txt
 description = Shackelford County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc417.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc417.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc417.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc417.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc417.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz114.txt
 station = ('kabi', 0.0073831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc417.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz114.txt
 
@@ -59525,17 +59525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz114.txt
 centroid = (0.5713492, -1.7250171)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz115.txt
 description = Stephens County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc429.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc429.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc429.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc429.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc429.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz115.txt
 station = ('kbkd', 0.0008569)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc429.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz115.txt
 
@@ -59543,17 +59543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz115.txt
 centroid = (0.5716512, -1.7158855)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz116.txt
 description = Palo Pinto County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc363.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc363.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc363.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc363.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc363.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz116.txt
 station = ('kmwl', 0.0036532)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc363.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz116.txt
 
@@ -59561,17 +59561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz116.txt
 centroid = (0.5720770, -1.7070210)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz117.txt
 description = Parker County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc367.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc367.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc367.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc367.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc367.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz117.txt
 station = ('kmwl', 0.0038395)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc367.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz117.txt
 
@@ -59579,17 +59579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz117.txt
 centroid = (0.5719514, -1.6980640)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz118.txt
 description = Tarrant County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc439.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc439.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc439.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc439.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc439.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz118.txt
 station = ('kftw', 0.0015523)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc439.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz118.txt
 
@@ -59597,17 +59597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz118.txt
 centroid = (0.5718851, -1.6890930)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz119.txt
 description = Dallas County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz119.txt
 station = ('kdal', 0.0017993)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz119.txt
 
@@ -59615,17 +59615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz119.txt
 centroid = (0.5741749, -1.6826318)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz120.txt
 description = Rockwall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc397.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc397.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc397.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc397.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc397.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz120.txt
 station = ('kf46', 0.0007201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc397.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz120.txt
 
@@ -59633,17 +59633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz120.txt
 centroid = (0.5689704, -1.6805409)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz121.txt
 description = Kaufman County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc257.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc257.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc257.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc257.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc257.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz121.txt
 station = ('ktrl', 0.0020669)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc257.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz121.txt
 
@@ -59651,17 +59651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz121.txt
 centroid = (0.5683438, -1.6726625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz122.txt
 description = Van Zandt County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz122.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz122.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc467.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc467.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz122.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz122.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz122.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz122.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz122.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc467.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc467.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc467.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz122.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz122.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz122.txt
 station = ('kjdd', 0.0058870)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc467.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz122.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz122.txt
 
@@ -59669,17 +59669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz122.txt
 centroid = (0.5736950, -1.6719102)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz123.txt
 description = Rains County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz123.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz123.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc379.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc379.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz123.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz123.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz123.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz123.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz123.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc379.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc379.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc379.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz123.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz123.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz123.txt
 station = ('kjdd', 0.0048992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc379.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz123.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz123.txt
 
@@ -59687,17 +59687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz123.txt
 centroid = (0.5722306, -1.6647317)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz124.txt
 description = Wood County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz124.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz124.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc499.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc499.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz124.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz124.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz124.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz124.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz124.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc499.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc499.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc499.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz124.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz124.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz124.txt
 station = ('kjdd', 0.0018481)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc499.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz124.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz124.txt
 
@@ -59705,17 +59705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz124.txt
 centroid = (0.5713562, -1.6570400)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz125.txt
 description = Upshur County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz125.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz125.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc459.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc459.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz125.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz125.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz125.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz125.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz125.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc459.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc459.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc459.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz125.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz125.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz125.txt
 station = ('kjxi', 0.0006615)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc459.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz125.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz125.txt
 
@@ -59723,17 +59723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz125.txt
 centroid = (0.5724331, -1.6468438)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz126.txt
 description = Marion County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz126.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz126.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc315.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc315.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz126.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz126.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz126.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz126.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz126.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc315.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc315.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc315.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz126.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz126.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz126.txt
 station = ('kasl', 0.0048974)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc315.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz126.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz126.txt
 
@@ -59741,17 +59741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz126.txt
 centroid = (0.5637675, -1.7434111)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz127.txt
 description = Taylor County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz127.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz127.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc441.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc441.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz127.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz127.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz127.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz127.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz127.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc441.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc441.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc441.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz127.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz127.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz127.txt
 station = ('kdys', 0.0021252)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc441.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz127.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz127.txt
 
@@ -59759,17 +59759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz127.txt
 centroid = (0.5637012, -1.7343948)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz128.txt
 description = Callahan County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz128.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz128.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz128.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz128.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz128.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz128.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz128.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz128.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz128.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz128.txt
 station = ('kabi', 0.0050177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz128.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz128.txt
 
@@ -59777,17 +59777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz128.txt
 centroid = (0.5642143, -1.7249490)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz129.txt
 description = Eastland County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz129.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz129.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz129.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz129.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz129.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz129.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz129.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz129.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz129.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz129.txt
 station = ('ketn', 0.0015440)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz129.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz129.txt
 
@@ -59795,17 +59795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz129.txt
 centroid = (0.5626296, -1.7142275)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz130.txt
 description = Erath County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz130.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz130.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc143.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc143.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz130.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz130.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz130.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz130.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz130.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc143.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc143.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc143.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz130.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz130.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz130.txt
 station = ('ksep', 0.0006160)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc143.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz130.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz130.txt
 
@@ -59813,17 +59813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz130.txt
 centroid = (0.5660085, -1.7074957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz131.txt
 description = Hood County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz131.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz131.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc221.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc221.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz131.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz131.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz131.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz131.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz131.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc221.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc221.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc221.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz131.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz131.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz131.txt
 station = ('kgdj', 0.0003392)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc221.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz131.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz131.txt
 
@@ -59831,17 +59831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz131.txt
 centroid = (0.5623852, -1.7064852)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz132.txt
 description = Somervell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz132.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz132.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc425.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc425.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz132.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz132.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz132.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz132.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz132.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc425.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc425.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc425.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz132.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz132.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz132.txt
 station = ('kgdj', 0.0039221)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc425.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz132.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz132.txt
 
@@ -59849,17 +59849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz132.txt
 centroid = (0.5651202, -1.6993625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz133.txt
 description = Johnson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz133.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz133.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc251.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc251.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz133.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz133.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz133.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz133.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz133.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc251.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc251.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc251.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz133.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz133.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz133.txt
 station = ('kcpt', 0.0010867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc251.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz133.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz133.txt
 
@@ -59867,17 +59867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz133.txt
 centroid = (0.5645861, -1.6893827)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz134.txt
 description = Ellis County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz134.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz134.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz134.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz134.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz134.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz134.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz134.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz134.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz134.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz134.txt
 station = ('kjwy', 0.0025545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz134.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz134.txt
 
@@ -59885,17 +59885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz134.txt
 centroid = (0.5622072, -1.6729644)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz135.txt
 description = Henderson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz135.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz135.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc213.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc213.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz135.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz135.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz135.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz135.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz135.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc213.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc213.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc213.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz135.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz135.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz135.txt
 station = ('kf44', 0.0009222)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc213.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz135.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz135.txt
 
@@ -59903,17 +59903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz135.txt
 centroid = (0.5650503, -1.6627612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz136.txt
 description = Smith County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz136.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz136.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc423.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc423.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz136.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz136.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz136.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz136.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz136.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc423.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc423.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc423.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz136.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz136.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz136.txt
 station = ('ktyr', 0.0019771)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc423.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz136.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz136.txt
 
@@ -59921,17 +59921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz136.txt
 centroid = (0.5668882, -1.6548723)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz137.txt
 description = Gregg County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz137.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz137.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz137.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz137.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz137.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz137.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz137.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz137.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz137.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz137.txt
 station = ('kggg', 0.0022489)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz137.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz137.txt
 
@@ -59939,17 +59939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz137.txt
 centroid = (0.5680750, -1.6470899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz138.txt
 description = Harrison County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz138.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz138.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc203.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc203.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz138.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz138.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz138.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz138.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz138.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc203.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc203.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc203.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz138.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz138.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz138.txt
 station = ('kasl', 0.0010528)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc203.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz138.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz138.txt
 
@@ -59957,17 +59957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz138.txt
 centroid = (0.5545470, -1.7357928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz139.txt
 description = Coleman County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz139.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz139.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz139.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz139.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz139.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz139.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz139.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz139.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz139.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz139.txt
 station = ('kcom', 0.0013980)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz139.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz139.txt
 
@@ -59975,17 +59975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz139.txt
 centroid = (0.5545662, -1.7278725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz140.txt
 description = Brown County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz140.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz140.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz140.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz140.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz140.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz140.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz140.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz140.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz140.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz140.txt
 station = ('kbwd', 0.0008643)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz140.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz140.txt
 
@@ -59993,17 +59993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz140.txt
 centroid = (0.5575978, -1.7201651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz141.txt
 description = Comanche County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz141.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz141.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz141.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz141.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz141.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz141.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz141.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz141.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz141.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz141.txt
 station = ('kmkn', 0.0008292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz141.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz141.txt
 
@@ -60011,17 +60011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz141.txt
 centroid = (0.5496949, -1.7208161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz142.txt
 description = Mills County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz142.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz142.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc333.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc333.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz142.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz142.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz142.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz142.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz142.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc333.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc333.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc333.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz142.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz142.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz142.txt
 station = ('k81r', 0.0048858)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc333.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz142.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz142.txt
 
@@ -60029,17 +60029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz142.txt
 centroid = (0.5533531, -1.7123547)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz143.txt
 description = Hamilton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz143.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz143.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz143.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz143.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz143.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz143.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz143.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz143.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz143.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz143.txt
 station = ('kmnz', 0.0008819)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz143.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz143.txt
 
@@ -60047,17 +60047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz143.txt
 centroid = (0.5567670, -1.7040400)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz144.txt
 description = Bosque County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz144.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz144.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz144.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz144.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz144.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz144.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz144.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz144.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz144.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz144.txt
 station = ('kact', 0.0081183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz144.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz144.txt
 
@@ -60065,17 +60065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz144.txt
 centroid = (0.5583430, -1.6952802)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz145.txt
 description = Hill County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz145.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz145.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc217.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc217.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz145.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz145.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz145.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz145.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz145.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc217.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc217.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc217.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz145.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz145.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz145.txt
 station = ('kinj', 0.0016985)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc217.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz145.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz145.txt
 
@@ -60083,17 +60083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz145.txt
 centroid = (0.5593257, -1.6837610)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz146.txt
 description = Navarro County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz146.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz146.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc349.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc349.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz146.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz146.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz146.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz146.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz146.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc349.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc349.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc349.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz146.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz146.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz146.txt
 station = ('kcrs', 0.0014202)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc349.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz146.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz146.txt
 
@@ -60101,17 +60101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz146.txt
 centroid = (0.5533549, -1.6781166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz147.txt
 description = Freestone County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz147.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz147.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc161.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc161.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz147.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz147.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz147.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz147.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz147.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc161.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc161.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc161.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz147.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz147.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz147.txt
 station = ('klxy', 0.0055496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc161.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz147.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz147.txt
 
@@ -60119,17 +60119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz147.txt
 centroid = (0.5552486, -1.6694511)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz148.txt
 description = Anderson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz148.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz148.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz148.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz148.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz148.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz148.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz148.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz148.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz148.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz148.txt
 station = ('kpsn', 0.0009918)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz148.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz148.txt
 
@@ -60137,17 +60137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz148.txt
 centroid = (0.5556605, -1.6609461)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz149.txt
 description = Cherokee County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz149.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz149.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz149.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz149.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz149.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz149.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz149.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz149.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz149.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz149.txt
 station = ('kjso', 0.0009539)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz149.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz149.txt
 
@@ -60155,17 +60155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz149.txt
 centroid = (0.5603851, -1.6539054)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz150.txt
 description = Rusk County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz150.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz150.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc401.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc401.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz150.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz150.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz150.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz150.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz150.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc401.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc401.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc401.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz150.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz150.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz150.txt
 station = ('krfi', 0.0014553)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc401.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz150.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz150.txt
 
@@ -60173,17 +60173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz150.txt
 centroid = (0.5613398, -1.6459432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz151.txt
 description = Panola County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz151.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz151.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc365.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc365.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz151.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz151.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz151.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz151.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz151.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc365.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc365.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc365.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz151.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz151.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz151.txt
 station = ('kf17', 0.0061815)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc365.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz151.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz151.txt
 
@@ -60191,17 +60191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz151.txt
 centroid = (0.5518033, -1.6513572)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz152.txt
 description = Nacogdoches County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz152.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz152.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc347.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc347.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz152.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz152.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz152.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz152.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz152.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc347.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc347.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc347.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz152.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz152.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz152.txt
 station = ('koch', 0.0016042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc347.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz152.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz152.txt
 
@@ -60209,17 +60209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz152.txt
 centroid = (0.5548821, -1.6431402)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz153.txt
 description = Shelby County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz153.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz153.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc419.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc419.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz153.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz153.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz153.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz153.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz153.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc419.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc419.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc419.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz153.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz153.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz153.txt
 station = ('kf17', 0.0007048)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc419.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz153.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz153.txt
 
@@ -60227,17 +60227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz153.txt
 centroid = (0.5445235, -1.7339410)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz154.txt
 description = McCulloch County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz154.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz154.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc307.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc307.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz154.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz154.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz154.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz154.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz154.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc307.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc307.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc307.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz154.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz154.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz154.txt
 station = ('kbbd', 0.0004928)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc307.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz154.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz154.txt
 
@@ -60245,17 +60245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz154.txt
 centroid = (0.5437608, -1.7246925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz155.txt
 description = San Saba County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz155.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz155.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc411.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc411.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz155.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz155.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz155.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz155.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz155.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc411.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc411.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc411.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz155.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz155.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz155.txt
 station = ('k81r', 0.0020507)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc411.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz155.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz155.txt
 
@@ -60263,17 +60263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz155.txt
 centroid = (0.5444764, -1.7146359)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz156.txt
 description = Lampasas County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz156.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz156.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc281.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc281.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz156.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz156.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz156.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz156.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz156.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc281.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc281.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc281.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz156.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz156.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz156.txt
 station = ('klzz', 0.0017133)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc281.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz156.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz156.txt
 
@@ -60281,17 +60281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz156.txt
 centroid = (0.5478746, -1.7069180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz157.txt
 description = Coryell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz157.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz157.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz157.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz157.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz157.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz157.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz157.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz157.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz157.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz157.txt
 station = ('kgop', 0.0005284)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz157.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz157.txt
 
@@ -60299,17 +60299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz157.txt
 centroid = (0.5417101, -1.7013155)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz158.txt
 description = Bell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz158.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz158.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz158.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz158.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz158.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz158.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz158.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz158.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz158.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz158.txt
 station = ('ktpl', 0.0022820)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz158.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz158.txt
 
@@ -60317,17 +60317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz158.txt
 centroid = (0.5506933, -1.6964914)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz159.txt
 description = McLennan County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz159.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz159.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc309.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc309.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz159.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz159.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz159.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz159.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz159.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc309.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc309.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc309.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz159.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz159.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz159.txt
 station = ('kact', 0.0008597)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc309.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz159.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz159.txt
 
@@ -60335,17 +60335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz159.txt
 centroid = (0.5454730, -1.6918489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz160.txt
 description = Falls County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz160.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz160.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz160.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz160.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz160.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz160.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz160.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz160.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz160.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz160.txt
 station = ('kt35', 0.0065471)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz160.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz160.txt
 
@@ -60353,17 +60353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz160.txt
 centroid = (0.5505728, -1.6856477)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz161.txt
 description = Limestone County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz161.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz161.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc293.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc293.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz161.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz161.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz161.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz161.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz161.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc293.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc293.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc293.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz161.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz161.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz161.txt
 station = ('klxy', 0.0019146)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc293.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz161.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz161.txt
 
@@ -60371,17 +60371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz161.txt
 centroid = (0.5462270, -1.6754410)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz162.txt
 description = Leon County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz162.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz162.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc289.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc289.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz162.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz162.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz162.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz162.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz162.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc289.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc289.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc289.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz162.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz162.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz162.txt
 station = ('kdkr', 0.0088316)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc289.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz162.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz162.txt
 
@@ -60389,17 +60389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz162.txt
 centroid = (0.5465987, -1.6654403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz163.txt
 description = Houston County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz163.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz163.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc225.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc225.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz163.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz163.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz163.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz163.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz163.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc225.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc225.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc225.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz163.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz163.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz163.txt
 station = ('kdkr', 0.0003419)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc225.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz163.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz163.txt
 
@@ -60407,17 +60407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz163.txt
 centroid = (0.5426019, -1.6604277)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz164.txt
 description = Trinity County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz164.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz164.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc455.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc455.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz164.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz164.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz164.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz164.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz164.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc455.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc455.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc455.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz164.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz164.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz164.txt
 station = ('kdkr', 0.0055243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc455.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz164.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz164.txt
 
@@ -60425,17 +60425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz164.txt
 centroid = (0.5454992, -1.6512874)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz165.txt
 description = Angelina County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz165.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz165.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz165.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz165.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz165.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz165.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz165.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz165.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz165.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz165.txt
 station = ('klfk', 0.0020960)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz165.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz165.txt
 
@@ -60443,17 +60443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz165.txt
 centroid = (0.5479322, -1.6435451)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz166.txt
 description = San Augustine County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz166.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz166.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc405.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc405.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz166.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz166.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz166.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz166.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz166.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc405.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc405.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc405.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz166.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz166.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz166.txt
 station = ('kf17', 0.0076361)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc405.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz166.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz166.txt
 
@@ -60461,17 +60461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz166.txt
 centroid = (0.5470420, -1.6380229)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz167.txt
 description = Sabine County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz167.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz167.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc403.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc403.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz167.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz167.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz167.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz167.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz167.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc403.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc403.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc403.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz167.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz167.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz167.txt
 station = ('kbkb', 0.0069433)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc403.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz167.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz167.txt
 
@@ -60479,17 +60479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz167.txt
 centroid = (0.5391287, -1.7421981)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz168.txt
 description = Menard County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz168.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz168.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc327.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc327.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz168.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz168.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz168.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz168.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz168.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc327.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc327.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc327.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz168.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz168.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz168.txt
 station = ('kjct', 0.0065625)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc327.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz168.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz168.txt
 
@@ -60497,17 +60497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz168.txt
 centroid = (0.5320950, -1.7409432)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz169.txt
 description = Kimble County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz169.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz169.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc267.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc267.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz169.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz169.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz169.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz169.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz169.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc267.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc267.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc267.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz169.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz169.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz169.txt
 station = ('kjct', 0.0005871)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc267.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz169.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz169.txt
 
@@ -60515,17 +60515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz169.txt
 centroid = (0.5361250, -1.7318221)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz170.txt
 description = Mason County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz170.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz170.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc319.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc319.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz170.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz170.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz170.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz170.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz170.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc319.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc319.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc319.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz170.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz170.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz170.txt
 station = ('kbbd', 0.0081860)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc319.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz170.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz170.txt
 
@@ -60533,17 +60533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz170.txt
 centroid = (0.5359138, -1.7223607)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz171.txt
 description = Llano County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz171.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz171.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc299.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc299.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz171.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz171.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz171.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz171.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz171.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc299.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc299.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc299.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz171.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz171.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz171.txt
 station = ('kaqo', 0.0014012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc299.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz171.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz171.txt
 
@@ -60551,17 +60551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz171.txt
 centroid = (0.5373572, -1.7136061)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz172.txt
 description = Burnet County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz172.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz172.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz172.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz172.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz172.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz172.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz172.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz172.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz172.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz172.txt
 station = ('kbmq', 0.0012263)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz172.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz172.txt
 
@@ -60569,17 +60569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz172.txt
 centroid = (0.5349103, -1.7034553)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz173.txt
 description = Williamson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz173.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz173.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc491.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc491.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz173.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz173.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz173.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz173.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz173.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc491.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc491.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc491.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz173.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz173.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz173.txt
 station = ('kgtu', 0.0013832)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc491.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz173.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz173.txt
 
@@ -60587,17 +60587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz173.txt
 centroid = (0.5373223, -1.6925662)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz174.txt
 description = Milam County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz174.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz174.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc331.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc331.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz174.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz174.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz174.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz174.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz174.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc331.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc331.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc331.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz174.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz174.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz174.txt
 station = ('kt35', 0.0016272)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc331.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz174.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz174.txt
 
@@ -60605,17 +60605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz174.txt
 centroid = (0.5415233, -1.6844661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz175.txt
 description = Robertson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz175.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz175.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc395.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc395.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz175.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz175.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz175.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz175.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz175.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc395.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc395.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc395.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz175.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz175.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz175.txt
 station = ('klhb', 0.0031674)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc395.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz175.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz175.txt
 
@@ -60623,17 +60623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz175.txt
 centroid = (0.5404517, -1.6742664)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz176.txt
 description = Madison County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz176.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz176.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc313.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc313.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz176.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz176.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz176.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz176.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz176.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc313.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc313.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc313.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz176.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz176.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz176.txt
 station = ('kuts', 0.0063944)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc313.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz176.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz176.txt
 
@@ -60641,17 +60641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz176.txt
 centroid = (0.5364968, -1.6680496)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz177.txt
 description = Walker County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz177.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz177.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc471.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc471.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz177.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz177.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz177.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz177.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz177.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc471.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc471.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc471.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz177.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz177.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz177.txt
 station = ('kuts', 0.0002545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc471.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz177.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz177.txt
 
@@ -60659,17 +60659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz177.txt
 centroid = (0.5337147, -1.6609757)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz178.txt
 description = San Jancinto, San Jacinto County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz178.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz178.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc407.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc407.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz178.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz178.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz178.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz178.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz178.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc407.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc407.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc407.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz178.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz178.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz178.txt
 station = ('kcxo', 0.0054933)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc407.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz178.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz178.txt
 
@@ -60677,17 +60677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz178.txt
 centroid = (0.5374357, -1.6550957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz179.txt
 description = Polk County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz179.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz179.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc373.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc373.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz179.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz179.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz179.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz179.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz179.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc373.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc373.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc373.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz179.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz179.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz179.txt
 station = ('klfk', 0.0077813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc373.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz179.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz179.txt
 
@@ -60695,17 +60695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz179.txt
 centroid = (0.5370588, -1.6471807)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz180.txt
 description = Tyler County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz180.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz180.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc457.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc457.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz180.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz180.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz180.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz180.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz180.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc457.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc457.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc457.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz180.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz180.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz180.txt
 station = ('kbpt', 0.0049066)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc457.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz180.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz180.txt
 
@@ -60713,17 +60713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz180.txt
 centroid = (0.5217313, -1.7654302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz183.txt
 description = Val Verde County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz183.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz183.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc465.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc465.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz183.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz183.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz183.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz183.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz183.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc465.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc465.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc465.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz183.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz183.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz183.txt
 station = ('kdrt', 0.0098540)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc465.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz183.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz183.txt
 
@@ -60731,17 +60731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz183.txt
 centroid = (0.5232951, -1.7506473)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz184.txt
 description = Edwards County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz184.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz184.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz184.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz184.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz184.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz184.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz184.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz184.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz184.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz184.txt
 station = ('kecu', 0.0020790)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz184.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz184.txt
 
@@ -60749,17 +60749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz184.txt
 centroid = (0.5206631, -1.7422243)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz185.txt
 description = Real County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz185.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz185.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc385.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc385.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz185.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz185.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz185.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz185.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz185.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc385.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc385.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc385.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz185.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz185.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz185.txt
 station = ('kecu', 0.0056843)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc385.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz185.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz185.txt
 
@@ -60767,17 +60767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz185.txt
 centroid = (0.5246722, -1.7339864)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz186.txt
 description = Kerr County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz186.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz186.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc265.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc265.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz186.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz186.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz186.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz186.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz186.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc265.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc265.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc265.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz186.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz186.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz186.txt
 station = ('kerv', 0.0043581)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc265.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz186.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz186.txt
 
@@ -60785,17 +60785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz186.txt
 centroid = (0.5191866, -1.7321747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz187.txt
 description = Bandera County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz187.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz187.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz187.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz187.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz187.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz187.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz187.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz187.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz187.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz187.txt
 station = ('kerv', 0.0045560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz187.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz187.txt
 
@@ -60803,17 +60803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz187.txt
 centroid = (0.5291507, -1.7269405)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz188.txt
 description = Gillespie County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz188.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz188.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz188.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz188.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz188.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz188.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz188.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz188.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz188.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz188.txt
 station = ('kt82', 0.0014144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz188.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz188.txt
 
@@ -60821,17 +60821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz188.txt
 centroid = (0.5226336, -1.7228424)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz189.txt
 description = Kendall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz189.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz189.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc259.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc259.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz189.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz189.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz189.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz189.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz189.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc259.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc259.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc259.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz189.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz189.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz189.txt
 station = ('kerv', 0.0056343)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc259.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz189.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz189.txt
 
@@ -60839,17 +60839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz189.txt
 centroid = (0.5282483, -1.7174005)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz190.txt
 description = Blanco County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz190.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz190.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz190.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz190.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz190.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz190.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz190.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz190.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz190.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz190.txt
 station = ('kdzb', 0.0045919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz190.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz190.txt
 
@@ -60857,17 +60857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz190.txt
 centroid = (0.5246146, -1.7109655)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz191.txt
 description = Hays County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz191.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz191.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc209.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc209.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz191.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz191.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz191.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz191.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz191.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc209.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc209.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc209.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz191.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz191.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz191.txt
 station = ('khyi', 0.0038183)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc209.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz191.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz191.txt
 
@@ -60875,17 +60875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz191.txt
 centroid = (0.5294404, -1.7066161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz192.txt
 description = Travis County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz192.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz192.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc453.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc453.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz192.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz192.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz192.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz192.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz192.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc453.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc453.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc453.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz192.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz192.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz192.txt
 station = ('katt', 0.0003895)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc453.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz192.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz192.txt
 
@@ -60893,17 +60893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz192.txt
 centroid = (0.5254069, -1.6984165)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz193.txt
 description = Bastrop County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz193.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz193.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz193.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz193.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz193.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz193.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz193.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz193.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz193.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz193.txt
 station = ('kgyb', 0.0051417)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz193.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz193.txt
 
@@ -60911,17 +60911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz193.txt
 centroid = (0.5290215, -1.6923707)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz194.txt
 description = Lee County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz194.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz194.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc287.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc287.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz194.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz194.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz194.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz194.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz194.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc287.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc287.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc287.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz194.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz194.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz194.txt
 station = ('kgyb', 0.0024796)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc287.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz194.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz194.txt
 
@@ -60929,17 +60929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz194.txt
 centroid = (0.5321928, -1.6863546)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz195.txt
 description = Burleson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz195.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz195.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz195.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz195.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz195.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz195.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz195.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz195.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz195.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz195.txt
 station = ('krwv', 0.0013088)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz195.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz195.txt
 
@@ -60947,17 +60947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz195.txt
 centroid = (0.5351371, -1.6807922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz196.txt
 description = Brazos County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz196.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz196.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz196.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz196.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz196.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz196.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz196.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz196.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz196.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz196.txt
 station = ('kcfd', 0.0010483)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz196.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz196.txt
 
@@ -60965,17 +60965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz196.txt
 centroid = (0.5273425, -1.6825602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz197.txt
 description = Washington County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz197.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz197.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc477.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc477.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz197.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz197.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz197.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz197.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz197.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc477.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc477.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc477.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz197.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz197.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz197.txt
 station = ('k11r', 0.0004505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc477.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz197.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz197.txt
 
@@ -60983,17 +60983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz197.txt
 centroid = (0.5330864, -1.6752630)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz198.txt
 description = Grimes County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz198.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz198.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz198.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz198.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz198.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz198.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz198.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz198.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz198.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz198.txt
 station = ('k60r', 0.0035605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz198.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz198.txt
 
@@ -61001,17 +61001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz198.txt
 centroid = (0.5288383, -1.6668418)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz199.txt
 description = Montgomery County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz199.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz199.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc339.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc339.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz199.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz199.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz199.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz199.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz199.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc339.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc339.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc339.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz199.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz199.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz199.txt
 station = ('kcxo', 0.0015643)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc339.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz199.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz199.txt
 
@@ -61019,17 +61019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz199.txt
 centroid = (0.5275851, -1.6557816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz200.txt
 description = Northern Liberty County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz200.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz200.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc291.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc291.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz200.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz200.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz200.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz200.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz200.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc291.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc291.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc291.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz200.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz200.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz200.txt
 station = ('kt78', 0.0036804)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc291.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz200.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz200.txt
 
@@ -61037,17 +61037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz200.txt
 centroid = (0.5294003, -1.6474215)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz201.txt
 description = Hardin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz201.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz201.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc199.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc199.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz201.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz201.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz201.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz201.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz201.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc199.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc199.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc199.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz201.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz201.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz201.txt
 station = ('kbmt', 0.0052731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc199.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz201.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz201.txt
 
@@ -61055,17 +61055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz201.txt
 centroid = (0.5122576, -1.7526247)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz202.txt
 description = Kinney County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz202.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz202.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc271.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc271.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz202.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz202.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz202.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz202.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz202.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc271.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc271.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc271.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz202.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz202.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz202.txt
 station = ('kdlf', 0.0041428)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc271.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz202.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz202.txt
 
@@ -61073,17 +61073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz202.txt
 centroid = (0.5123815, -1.7411789)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz203.txt
 description = Uvalde County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc463.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc463.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc463.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc463.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc463.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz203.txt
 station = ('kuva', 0.0025676)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc463.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz203.txt
 
@@ -61091,17 +61091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz203.txt
 centroid = (0.5123536, -1.7297976)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz204.txt
 description = Medina County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc325.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc325.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc325.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc325.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc325.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz204.txt
 station = ('khdo', 0.0008815)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc325.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz204.txt
 
@@ -61109,17 +61109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz204.txt
 centroid = (0.5139838, -1.7194966)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz205.txt
 description = Bexar County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz205.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz205.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz205.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz205.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz205.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz205.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz205.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz205.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz205.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz205.txt
 station = ('kskf', 0.0014992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz205.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz205.txt
 
@@ -61127,17 +61127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz205.txt
 centroid = (0.5202512, -1.7152782)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz206.txt
 description = Comal County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz206.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz206.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz206.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz206.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz206.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz206.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz206.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz206.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz206.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz206.txt
 station = ('kbaz', 0.0038087)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz206.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz206.txt
 
@@ -61145,17 +61145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz206.txt
 centroid = (0.5163225, -1.7095221)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz207.txt
 description = Guadalupe County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz207.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz207.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz207.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz207.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz207.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz207.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz207.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz207.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz207.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz207.txt
 station = ('kseq', 0.0007684)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz207.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz207.txt
 
@@ -61163,17 +61163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz207.txt
 centroid = (0.5207574, -1.7037904)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz208.txt
 description = Caldwell County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz208.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz208.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz208.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz208.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz208.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz208.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz208.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz208.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz208.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz208.txt
 station = ('khyi', 0.0038326)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz208.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz208.txt
 
@@ -61181,17 +61181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz208.txt
 centroid = (0.5214485, -1.6915696)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz209.txt
 description = Fayette County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz209.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz209.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc149.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc149.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz209.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz209.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz209.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz209.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz209.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc149.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc149.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc149.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz209.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz209.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz209.txt
 station = ('k3t5', 0.0007116)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc149.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz209.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz209.txt
 
@@ -61199,17 +61199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz209.txt
 centroid = (0.5169805, -1.6847017)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz210.txt
 description = Colorado County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz210.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz210.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz210.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz210.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz210.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz210.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz210.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz210.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz210.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz210.txt
 station = ('k66r', 0.0003880)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz210.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz210.txt
 
@@ -61217,17 +61217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz210.txt
 centroid = (0.5216266, -1.6803681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz211.txt
 description = Austin County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz211.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz211.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz211.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz211.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz211.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz211.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz211.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz211.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz211.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz211.txt
 station = ('kela', 0.0050427)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz211.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz211.txt
 
@@ -61235,17 +61235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz211.txt
 centroid = (0.5237925, -1.6753014)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz212.txt
 description = Waller County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz212.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz212.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc473.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc473.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz212.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz212.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz212.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz212.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz212.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc473.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc473.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc473.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz212.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz212.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz212.txt
 station = ('ktme', 0.0038092)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc473.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz212.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz212.txt
 
@@ -61253,17 +61253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz212.txt
 centroid = (0.5215550, -1.6660739)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz213.txt
 description = Inland Harris County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz213.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz213.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz213.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz213.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz213.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz213.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz213.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz213.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz213.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz213.txt
 station = ('kiah', 0.0024753)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz213.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz213.txt
 
@@ -61271,17 +61271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz213.txt
 centroid = (0.5190400, -1.6512211)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz214.txt
 description = Chambers County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz214.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz214.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz214.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz214.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz214.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz214.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz214.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz214.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz214.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz214.txt
 station = ('kt78', 0.0060734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz214.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz214.txt
 
@@ -61289,17 +61289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz214.txt
 centroid = (0.5016530, -1.7508183)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz217.txt
 description = Maverick County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz217.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz217.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc323.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc323.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz217.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz217.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz217.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz217.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz217.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc323.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc323.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc323.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz217.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz217.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz217.txt
 station = ('mmpg', 0.0031824)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc323.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz217.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz217.txt
 
@@ -61307,17 +61307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz217.txt
 centroid = (0.5038102, -1.7411509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz218.txt
 description = Zavala County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz218.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz218.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc507.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc507.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz218.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz218.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz218.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz218.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz218.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc507.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc507.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc507.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz218.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz218.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz218.txt
 station = ('kuva', 0.0060256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc507.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz218.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz218.txt
 
@@ -61325,17 +61325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz218.txt
 centroid = (0.5038382, -1.7297662)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz219.txt
 description = Frio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz219.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz219.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz219.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz219.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz219.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz219.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz219.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz219.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz219.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz219.txt
 station = ('kcot', 0.0074785)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz219.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz219.txt
 
@@ -61343,17 +61343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz219.txt
 centroid = (0.5042378, -1.7196363)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz220.txt
 description = Atascosa County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz220.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz220.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz220.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz220.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz220.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz220.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz220.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz220.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz220.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz220.txt
 station = ('kpez', 0.0011149)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz220.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz220.txt
 
@@ -61361,17 +61361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz220.txt
 centroid = (0.5091841, -1.7119341)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz221.txt
 description = Wilson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz221.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz221.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc493.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc493.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz221.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz221.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz221.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz221.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz221.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc493.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc493.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc493.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz221.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz221.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz221.txt
 station = ('kssf', 0.0064201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc493.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz221.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz221.txt
 
@@ -61379,17 +61379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz221.txt
 centroid = (0.5044996, -1.7079687)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz222.txt
 description = Karnes County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz222.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz222.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc255.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc255.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz222.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz222.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz222.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz222.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz222.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc255.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc255.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc255.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz222.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz222.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz222.txt
 station = ('k2r9', 0.0014115)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc255.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz222.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz222.txt
 
@@ -61397,17 +61397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz222.txt
 centroid = (0.5141164, -1.7015651)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz223.txt
 description = Gonzales County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz223.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz223.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc177.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc177.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz223.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz223.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz223.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz223.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz223.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc177.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc177.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc177.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz223.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz223.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz223.txt
 station = ('kseq', 0.0065057)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc177.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz223.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz223.txt
 
@@ -61415,17 +61415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz223.txt
 centroid = (0.5075784, -1.6991967)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz224.txt
 description = De Witt, DeWitt County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz224.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz224.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz224.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz224.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz224.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz224.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz224.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz224.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz224.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz224.txt
 station = ('kvct', 0.0074796)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz224.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz224.txt
 
@@ -61433,17 +61433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz224.txt
 centroid = (0.5128528, -1.6917511)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz225.txt
 description = Lavaca County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz225.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz225.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc285.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc285.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz225.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz225.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz225.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz225.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz225.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc285.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc285.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc285.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz225.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz225.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz225.txt
 station = ('k66r', 0.0077265)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc285.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz225.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz225.txt
 
@@ -61451,17 +61451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz225.txt
 centroid = (0.5109958, -1.6793925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz226.txt
 description = Wharton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz226.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz226.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc481.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc481.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz226.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz226.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz226.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz226.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz226.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc481.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc481.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc481.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz226.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz226.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz226.txt
 station = ('karm', 0.0011142)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc481.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz226.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz226.txt
 
@@ -61469,17 +61469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz226.txt
 centroid = (0.5153503, -1.6715140)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz227.txt
 description = Fort Bend County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz227.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz227.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz227.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz227.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz227.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz227.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz227.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz227.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz227.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz227.txt
 station = ('ksgr', 0.0024051)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz227.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz227.txt
 
@@ -61487,17 +61487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz227.txt
 centroid = (0.4960662, -1.7410829)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz228.txt
 description = Dimmit County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz228.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz228.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz228.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz228.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz228.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz228.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz228.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz228.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz228.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz228.txt
 station = ('kczt', 0.0020203)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz228.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz228.txt
 
@@ -61505,17 +61505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz228.txt
 centroid = (0.4947153, -1.7296161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz229.txt
 description = La Salle County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz229.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz229.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc283.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc283.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz229.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz229.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz229.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz229.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz229.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc283.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc283.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc283.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz229.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz229.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz229.txt
 station = ('kcot', 0.0025646)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc283.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz229.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz229.txt
 
@@ -61523,17 +61523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz229.txt
 centroid = (0.4947851, -1.7203274)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz230.txt
 description = McMullen County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz230.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz230.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc311.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc311.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz230.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz230.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz230.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz230.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz230.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc311.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc311.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc311.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz230.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz230.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz230.txt
 station = ('k8t6', 0.0069311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc311.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz230.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz230.txt
 
@@ -61541,17 +61541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz230.txt
 centroid = (0.4948253, -1.7126008)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz231.txt
 description = Live Oak County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz231.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz231.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc297.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc297.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz231.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz231.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz231.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz231.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz231.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc297.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc297.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc297.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz231.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz231.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz231.txt
 station = ('k8t6', 0.0002363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc297.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz231.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz231.txt
 
@@ -61559,17 +61559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz231.txt
 centroid = (0.4959772, -1.7059058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz232.txt
 description = Bee County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz232.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz232.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz232.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz232.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz232.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz232.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz232.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz232.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz232.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz232.txt
 station = ('kbea', 0.0012341)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz232.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz232.txt
 
@@ -61577,17 +61577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz232.txt
 centroid = (0.5001607, -1.7004115)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz233.txt
 description = Goliad County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz233.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz233.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc175.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc175.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz233.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz233.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz233.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz233.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz233.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc175.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc175.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc175.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz233.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz233.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz233.txt
 station = ('k2r9', 0.0073320)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc175.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz233.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz233.txt
 
@@ -61595,17 +61595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz233.txt
 centroid = (0.5025920, -1.6924702)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz234.txt
 description = Victoria County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz234.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz234.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc469.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc469.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz234.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz234.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz234.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz234.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz234.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc469.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc469.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc469.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz234.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz234.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz234.txt
 station = ('kvct', 0.0013575)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc469.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz234.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz234.txt
 
@@ -61613,17 +61613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz234.txt
 centroid = (0.5062136, -1.6860649)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz235.txt
 description = Inland Jackson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz235.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz235.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc239.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc239.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz235.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz235.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz235.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz235.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz235.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc239.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc239.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc239.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz235.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz235.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz235.txt
 station = ('kvct', 0.0055660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc239.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz235.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz235.txt
 
@@ -61631,17 +61631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz235.txt
 centroid = (0.5053793, -1.6758669)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz236.txt
 description = Inland Matagorda County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz236.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz236.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc321.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc321.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz236.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz236.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz236.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz236.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz236.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc321.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc321.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc321.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz236.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz236.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz236.txt
 station = ('kbyy', 0.0024121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz236.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz236.txt
 
@@ -61649,17 +61649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz236.txt
 centroid = (0.5108404, -1.6670128)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz237.txt
 description = Inland Brazoria County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz237.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz237.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz237.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz237.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz237.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz237.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz237.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz237.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz237.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz237.txt
 station = ('klbx', 0.0027501)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz237.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz237.txt
 
@@ -61667,17 +61667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz237.txt
 centroid = (0.5134881, -1.6603666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz238.txt
 description = Inland Galveston County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz238.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz238.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz238.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz238.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz238.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz238.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz238.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz238.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz238.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz238.txt
 station = ('klvj', 0.0024537)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz238.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz238.txt
 
@@ -61685,17 +61685,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz238.txt
 centroid = (0.4845226, -1.7336635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz239.txt
 description = Webb County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz239.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz239.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc479.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc479.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz239.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz239.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz239.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz239.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz239.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc479.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc479.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc479.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz239.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz239.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz239.txt
 station = ('klrd', 0.0042936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc479.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz239.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz239.txt
 
@@ -61703,17 +61703,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz239.txt
 centroid = (0.4831298, -1.7193046)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz240.txt
 description = Duval County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz240.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz240.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz240.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz240.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz240.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz240.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz240.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz240.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz240.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz240.txt
 station = ('knqi', 0.0036144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz240.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz240.txt
 
@@ -61721,17 +61721,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz240.txt
 centroid = (0.4839973, -1.7119970)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz241.txt
 description = Jim Wells County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz241.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz241.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc249.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc249.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz241.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz241.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz241.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz241.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz241.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc249.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc249.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc249.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz241.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz241.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz241.txt
 station = ('kali', 0.0011367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc249.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz241.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz241.txt
 
@@ -61739,17 +61739,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz241.txt
 centroid = (0.4787770, -1.7078099)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz242.txt
 description = Inland Kleberg County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz242.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz242.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc273.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc273.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz242.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz242.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz242.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz242.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz242.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc273.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc273.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc273.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz242.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz242.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz242.txt
 station = ('kikg', 0.0034831)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz242.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz242.txt
 
@@ -61757,17 +61757,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz242.txt
 centroid = (0.4841945, -1.7055811)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz243.txt
 description = Inland Nueces County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz243.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz243.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc355.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc355.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz243.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz243.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz243.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz243.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz243.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc355.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc355.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc355.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz243.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz243.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz243.txt
 station = ('krbo', 0.0008029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz243.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz243.txt
 
@@ -61775,17 +61775,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz243.txt
 centroid = (0.4891722, -1.7032302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz244.txt
 description = Inland San Patricio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz244.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz244.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc409.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc409.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz244.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz244.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz244.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz244.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz244.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc409.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc409.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc409.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz244.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz244.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz244.txt
 station = ('krbo', 0.0046266)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc409.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz244.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz244.txt
 
@@ -61793,17 +61793,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz244.txt
 centroid = (0.4914114, -1.6930828)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz245.txt
 description = Aransas County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz245.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz245.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz245.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz245.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz245.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz245.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz245.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz245.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz245.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz245.txt
 station = ('krkp', 0.0014311)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz245.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz245.txt
 
@@ -61811,17 +61811,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz245.txt
 centroid = (0.4946385, -1.6965997)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz246.txt
 description = Inland Refugio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz246.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz246.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc391.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc391.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz246.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz246.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz246.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz246.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz246.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc391.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc391.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc391.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz246.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz246.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz246.txt
 station = ('krkp', 0.0051071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc391.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz246.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz246.txt
 
@@ -61829,17 +61829,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz246.txt
 centroid = (0.4986004, -1.6893443)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz247.txt
 description = Inland Calhoun County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz247.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz247.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz247.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz247.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz247.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz247.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz247.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz247.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz247.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz247.txt
 station = ('kpkv', 0.0022727)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz247.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz247.txt
 
@@ -61847,17 +61847,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz247.txt
 centroid = (0.4712529, -1.7308186)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz248.txt
 description = Zapata County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz248.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz248.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc505.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc505.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz248.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz248.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz248.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz248.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz248.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc505.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc505.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc505.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz248.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz248.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz248.txt
 station = ('kapy', 0.0013681)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc505.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz248.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz248.txt
 
@@ -61865,17 +61865,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz248.txt
 centroid = (0.4719964, -1.7225928)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz249.txt
 description = Jim Hogg County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz249.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz249.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc247.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc247.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz249.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz249.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz249.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz249.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz249.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc247.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc247.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc247.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz249.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz249.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz249.txt
 station = ('khbv', 0.0050911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc247.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz249.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz249.txt
 
@@ -61883,17 +61883,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz249.txt
 centroid = (0.4717904, -1.7142397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz250.txt
 description = Brooks County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz250.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz250.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz250.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz250.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz250.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz250.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz250.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz250.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz250.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz250.txt
 station = ('kbks', 0.0034109)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz250.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz250.txt
 
@@ -61901,17 +61901,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz250.txt
 centroid = (0.4698514, -1.7065707)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz251.txt
 description = Inland Kenedy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz251.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz251.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc261.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc261.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz251.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz251.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz251.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz251.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz251.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc261.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc261.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc261.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz251.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz251.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz251.txt
 station = ('kbks', 0.0072916)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz251.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz251.txt
 
@@ -61919,17 +61919,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz251.txt
 centroid = (0.4635961, -1.7233102)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz252.txt
 description = Starr County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz252.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz252.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc427.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc427.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz252.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz252.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz252.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz252.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz252.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc427.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc427.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc427.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz252.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz252.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz252.txt
 station = ('kebg', 0.0097399)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc427.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz252.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz252.txt
 
@@ -61937,17 +61937,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz252.txt
 centroid = (0.4586184, -1.7135451)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz253.txt
 description = Southern Hidalgo County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz253.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz253.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc215.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc215.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz253.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz253.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz253.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz253.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz253.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc215.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc215.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc215.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz253.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz253.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz253.txt
 station = ('kmfe', 0.0019763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc215.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz253.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz253.txt
 
@@ -61955,17 +61955,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz253.txt
 centroid = (0.4619276, -1.7055131)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz254.txt
 description = Inland Willacy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz254.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz254.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc489.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc489.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz254.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz254.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz254.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz254.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz254.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc489.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc489.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc489.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz254.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz254.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz254.txt
 station = ('khrl', 0.0044909)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz254.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz254.txt
 
@@ -61973,17 +61973,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz254.txt
 centroid = (0.4558835, -1.7030801)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz255.txt
 description = Inland Cameron County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz255.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz255.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz255.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz255.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz255.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz255.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz255.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz255.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz255.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz255.txt
 station = ('khrl', 0.0020152)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz255.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz255.txt
 
@@ -61991,17 +61991,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz255.txt
 centroid = (0.5386802, -1.6412047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz259.txt
 description = Northern Jasper County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz259.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz259.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc241.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc241.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz259.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz259.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz259.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz259.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz259.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc241.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc241.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc241.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz259.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz259.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz259.txt
 station = ('kjas', 0.0003746)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc241.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz259.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz259.txt
 
@@ -62009,17 +62009,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz259.txt
 centroid = (0.5390903, -1.6358744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz260.txt
 description = Northern Newton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz260.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz260.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc351.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc351.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz260.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz260.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz260.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz260.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz260.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc351.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc351.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc351.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz260.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz260.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz260.txt
 station = ('kbkb', 0.0025809)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc351.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz260.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz260.txt
 
@@ -62027,17 +62027,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz260.txt
 centroid = (0.5302729, -1.6405694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz261.txt
 description = Southern Jasper County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz261.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz261.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc241.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc241.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz261.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz261.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz261.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz261.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz261.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc241.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc241.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc241.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz261.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz261.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz261.txt
 station = ('kbpt', 0.0040572)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc241.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz261.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz261.txt
 
@@ -62045,17 +62045,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz261.txt
 centroid = (0.5302834, -1.6372742)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz262.txt
 description = Southern Newton County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz262.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz262.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc351.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc351.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz262.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz262.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz262.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz262.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz262.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc351.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc351.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc351.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz262.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz262.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz262.txt
 station = ('k5r8', 0.0051495)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc351.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz262.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz262.txt
 
@@ -62063,17 +62063,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz262.txt
 centroid = (0.5575646, -1.8298468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz270.txt
 description = Guadalupe Mountains Above 7000 Feet, Culberson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz270.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz270.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz270.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz270.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz270.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz270.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz270.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz270.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz270.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz270.txt
 station = ('kcnm', 0.0108672)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz270.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz270.txt
 
@@ -62081,17 +62081,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz270.txt
 centroid = (0.5539291, -1.8279217)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz271.txt
 description = Guadalupe and Delaware Mountains, Culberson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz271.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz271.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz271.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz271.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz271.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz271.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz271.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz271.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz271.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz271.txt
 station = ('kvhn', 0.0118933)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz271.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz271.txt
 
@@ -62099,17 +62099,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz271.txt
 centroid = (0.5447574, -1.8278903)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz272.txt
 description = Van Horn and Highway 54 Corridor, Culberson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz272.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz272.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz272.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz272.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz272.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz272.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz272.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz272.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz272.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz272.txt
 station = ('kvhn', 0.0028129)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz272.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz272.txt
 
@@ -62117,17 +62117,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz272.txt
 centroid = (0.5524875, -1.8214012)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz273.txt
 description = Eastern Culberson County, Culberson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz273.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz273.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz273.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz273.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz273.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz273.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz273.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz273.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz273.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz273.txt
 station = ('kcnm', 0.0119136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz273.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz273.txt
 
@@ -62135,17 +62135,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz273.txt
 centroid = (0.5468658, -1.8095574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz274.txt
 description = Reeves County Plains, Reeves County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz274.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz274.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc389.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc389.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz274.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz274.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz274.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz274.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz274.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc389.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc389.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc389.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz274.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz274.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz274.txt
 station = ('kpeq', 0.0026670)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc389.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz274.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz274.txt
 
@@ -62153,17 +62153,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz274.txt
 centroid = (0.5252376, -1.8220574)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz275.txt
 description = Chinati Mountains, Presidio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz275.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz275.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc377.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc377.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz275.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz275.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz275.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz275.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz275.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc377.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc377.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc377.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz275.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz275.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz275.txt
 station = ('kmrf', 0.0074445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz275.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz275.txt
 
@@ -62171,17 +62171,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz275.txt
 centroid = (0.5267229, -1.8194499)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz276.txt
 description = Marfa Plateau, Presidio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz276.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz276.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc377.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc377.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz276.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz276.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz276.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz276.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz276.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc377.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc377.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc377.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz276.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz276.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz276.txt
 station = ('kmrf', 0.0047709)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz276.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz276.txt
 
@@ -62189,17 +62189,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz276.txt
 centroid = (0.5328054, -1.8148806)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz277.txt
 description = Davis Mountains, Presidio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz277.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz277.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc377.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc377.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz277.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz277.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz277.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz277.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz277.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc377.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc377.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc377.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz277.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz277.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz277.txt
 station = ('kmrf', 0.0028472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz277.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz277.txt
 
@@ -62207,17 +62207,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz277.txt
 centroid = (0.5367551, -1.8114249)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz278.txt
 description = Davis Mountains Foothills, Reeves County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz278.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz278.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc389.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc389.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz278.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz278.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz278.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz278.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz278.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc389.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc389.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc389.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz278.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz278.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz278.txt
 station = ('ke38', 0.0066367)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc389.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz278.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz278.txt
 
@@ -62225,17 +62225,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz278.txt
 centroid = (0.5207766, -1.8031555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz279.txt
 description = Central Brewster County, Brewster County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz279.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz279.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz279.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz279.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz279.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz279.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz279.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz279.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz279.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz279.txt
 station = ('ke38', 0.0110452)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz279.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz279.txt
 
@@ -62243,17 +62243,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz279.txt
 centroid = (0.5105228, -1.8027366)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz280.txt
 description = Chisos Basin, Brewster County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz280.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz280.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz280.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz280.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz280.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz280.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz280.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz280.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz280.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz280.txt
 station = ('kprs', 0.0176182)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz280.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz280.txt
 
@@ -62261,17 +62261,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz280.txt
 centroid = (0.5215306, -1.8217834)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz281.txt
 description = Presidio Valley, Presidio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz281.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz281.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc377.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc377.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz281.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz281.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz281.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz281.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz281.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc377.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc377.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc377.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz281.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz281.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz281.txt
 station = ('kprs', 0.0043256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz281.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz281.txt
 
@@ -62279,17 +62279,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz281.txt
 centroid = (0.5153120, -1.7980626)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz282.txt
 description = Lower Brewster County, Brewster County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz282.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz282.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz282.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz282.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz282.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz282.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz282.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz282.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz282.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz282.txt
 station = ('k6r6', 0.0152472)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz282.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz282.txt
 
@@ -62297,17 +62297,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz282.txt
 centroid = (0.5230804, -1.6524271)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz300.txt
 description = Southern Liberty County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz300.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz300.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc291.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc291.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz300.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz300.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz300.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz300.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz300.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc291.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc291.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc291.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz300.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz300.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz300.txt
 station = ('kt78', 0.0019042)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc291.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz300.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz300.txt
 
@@ -62315,17 +62315,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz300.txt
 centroid = (0.5188532, -1.6590541)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz313.txt
 description = Coastal Harris County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz313.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz313.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc201.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc201.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz313.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz313.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz313.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz313.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz313.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc201.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc201.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc201.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz313.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz313.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz313.txt
 station = ('kt41', 0.0010324)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc201.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz313.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz313.txt
 
@@ -62333,17 +62333,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz313.txt
 centroid = (0.6098809, -1.7746124)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz317.txt
 description = Palo Duro Canyon, Randall County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz317.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz317.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc381.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc381.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz317.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz317.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz317.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz317.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz317.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc381.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc381.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc381.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz317.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz317.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz317.txt
 station = ('kama', 0.0047981)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc381.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz317.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz317.txt
 
@@ -62351,17 +62351,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz317.txt
 centroid = (0.5020527, -1.6838465)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz335.txt
 description = Coastal Jackson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz335.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz335.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc239.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc239.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz335.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz335.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz335.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz335.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz335.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc239.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc239.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc239.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz335.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz335.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz335.txt
 station = ('kpkv', 0.0036781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc239.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz335.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz335.txt
 
@@ -62369,17 +62369,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz335.txt
 centroid = (0.5021225, -1.6744095)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz336.txt
 description = Coastal Matagorda County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz336.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz336.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc321.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc321.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz336.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz336.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz336.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz336.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz336.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc321.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc321.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc321.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz336.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz336.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz336.txt
 station = ('kbyy', 0.0037250)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz336.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz336.txt
 
@@ -62387,17 +62387,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz336.txt
 centroid = (0.5073253, -1.6643861)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz337.txt
 description = Coastal Brazoria County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz337.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz337.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz337.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz337.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz337.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz337.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz337.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz337.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz337.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz337.txt
 station = ('klbx', 0.0018075)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz337.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz337.txt
 
@@ -62405,17 +62405,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz337.txt
 centroid = (0.5129296, -1.6581117)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz338.txt
 description = Coastal Galveston County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz338.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz338.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz338.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz338.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz338.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz338.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz338.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz338.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz338.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz338.txt
 station = ('kgls', 0.0029711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz338.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz338.txt
 
@@ -62423,17 +62423,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz338.txt
 centroid = (0.4789323, -1.7012911)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz342.txt
 description = Coastal Kleberg County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz342.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz342.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc273.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc273.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz342.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz342.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz342.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz342.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz342.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc273.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc273.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc273.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz342.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz342.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz342.txt
 station = ('kngp', 0.0051845)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz342.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz342.txt
 
@@ -62441,17 +62441,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz342.txt
 centroid = (0.4828226, -1.7001374)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz343.txt
 description = Coastal Nueces County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz343.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz343.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc355.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc355.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz343.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz343.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz343.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz343.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz343.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc355.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc355.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc355.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz343.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz343.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz343.txt
 station = ('kngp', 0.0019983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz343.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz343.txt
 
@@ -62459,17 +62459,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz343.txt
 centroid = (0.4876991, -1.6975893)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz344.txt
 description = Coastal San Patricio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz344.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz344.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc409.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc409.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz344.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz344.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz344.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz344.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz344.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc409.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc409.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc409.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz344.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz344.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz344.txt
 station = ('kras', 0.0035556)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc409.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz344.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz344.txt
 
@@ -62477,17 +62477,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz344.txt
 centroid = (0.4887812, -1.6919065)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz345.txt
 description = Aransas County Islands, Aransas County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz345.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz345.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz345.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz345.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz345.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz345.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz345.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz345.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz345.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz345.txt
 station = ('krkp', 0.0021869)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz345.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz345.txt
 
@@ -62495,17 +62495,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz345.txt
 centroid = (0.4935390, -1.6932224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz346.txt
 description = Coastal Refugio County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz346.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz346.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc391.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc391.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz346.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz346.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz346.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz346.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz346.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc391.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc391.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc391.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz346.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz346.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz346.txt
 station = ('krkp', 0.0034360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc391.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz346.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz346.txt
 
@@ -62513,17 +62513,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz346.txt
 centroid = (0.4976230, -1.6857001)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz347.txt
 description = Coastal Calhoun County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz347.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz347.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz347.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz347.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz347.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz347.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz347.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz347.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz347.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz347.txt
 station = ('kpkv', 0.0028977)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz347.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz347.txt
 
@@ -62531,17 +62531,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz347.txt
 centroid = (0.4704640, -1.7016192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz351.txt
 description = Coastal Kenedy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz351.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz351.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc261.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc261.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz351.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz351.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz351.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz351.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz351.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc261.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc261.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc261.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz351.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz351.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz351.txt
 station = ('kbks', 0.0106623)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz351.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz351.txt
 
@@ -62549,17 +62549,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz351.txt
 centroid = (0.4644897, -1.7136498)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz353.txt
 description = Northern Hidalgo County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz353.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz353.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc215.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc215.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz353.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz353.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz353.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz353.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz353.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc215.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc215.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc215.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz353.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz353.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz353.txt
 station = ('kebg', 0.0031136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc215.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz353.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz353.txt
 
@@ -62567,17 +62567,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz353.txt
 centroid = (0.4622819, -1.7011253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz354.txt
 description = Coastal Willacy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz354.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz354.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc489.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc489.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz354.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz354.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz354.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz354.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz354.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc489.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc489.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc489.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz354.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz354.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz354.txt
 station = ('khrl', 0.0055130)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz354.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz354.txt
 
@@ -62585,17 +62585,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz354.txt
 centroid = (0.4567527, -1.6986661)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz355.txt
 description = Coastal Cameron County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz355.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz355.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz355.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz355.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz355.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz355.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz355.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz355.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz355.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz355.txt
 station = ('kpil', 0.0001232)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz355.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz355.txt
 
@@ -62603,17 +62603,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz355.txt
 centroid = (0.5566431, -1.8597269)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz418.txt
 description = Western El Paso County, El Paso County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz418.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz418.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz418.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz418.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz418.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz418.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz418.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz418.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz418.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz418.txt
 station = ('kdna', 0.0022407)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz418.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz418.txt
 
@@ -62621,17 +62621,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz418.txt
 centroid = (0.5551823, -1.8551942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz419.txt
 description = Eastern/Central El Paso County, El Paso County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz419.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz419.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz419.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz419.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz419.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz419.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz419.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz419.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz419.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz419.txt
 station = ('kbif', 0.0014902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz419.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz419.txt
 
@@ -62639,17 +62639,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz419.txt
 centroid = (0.5533671, -1.8463454)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz420.txt
 description = Northern Hudspeth Highlands/Hueco Mountains, Hudspeth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz420.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz420.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz420.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz420.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz420.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz420.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz420.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz420.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz420.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz420.txt
 station = ('kbif', 0.0091883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz420.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz420.txt
 
@@ -62657,17 +62657,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz420.txt
 centroid = (0.5539605, -1.8363988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz421.txt
 description = Salt Basin, Hudspeth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz421.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz421.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz421.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz421.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz421.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz421.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz421.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz421.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz421.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz421.txt
 station = ('kvhn', 0.0135420)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz421.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz421.txt
 
@@ -62675,17 +62675,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz421.txt
 centroid = (0.5443193, -1.8359659)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz422.txt
 description = Southern Hudspeth Highlands, Hudspeth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz422.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz422.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz422.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz422.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz422.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz422.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz422.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz422.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz422.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz422.txt
 station = ('kvhn', 0.0065164)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz422.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz422.txt
 
@@ -62693,17 +62693,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz422.txt
 centroid = (0.5473963, -1.8481449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz423.txt
 description = Rio Grande Valley of Eastern El Paso/Western Hudspeth Counties, Hudspeth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz423.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz423.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz423.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz423.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz423.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz423.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz423.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz423.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz423.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz423.txt
 station = ('mmcs', 0.0093456)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz423.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz423.txt
 
@@ -62711,17 +62711,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz423.txt
 centroid = (0.5390013, -1.8373203)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz424.txt
 description = Rio Grande Valley of Eastern Hudspeth County, Hudspeth County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz424.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz424.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc229.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc229.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz424.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz424.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz424.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz424.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz424.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc229.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc229.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc229.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz424.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz424.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz424.txt
 station = ('kvhn', 0.0079001)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz424.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz424.txt
 
@@ -62729,17 +62729,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz424.txt
 centroid = (0.4995970, -1.6749471)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz436.txt
 description = Matagorda Islands, Matagorda County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz436.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz436.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc321.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc321.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz436.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz436.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz436.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz436.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz436.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc321.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc321.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc321.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz436.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz436.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz436.txt
 station = ('kpsx', 0.0046150)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz436.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz436.txt
 
@@ -62747,17 +62747,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz436.txt
 centroid = (0.5055713, -1.6633075)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz437.txt
 description = Brazoria Islands, Brazoria County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz437.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz437.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz437.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz437.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz437.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz437.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz437.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz437.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz437.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz437.txt
 station = ('klbx', 0.0036391)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz437.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz437.txt
 
@@ -62765,17 +62765,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz437.txt
 centroid = (0.5104320, -1.6562703)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz438.txt
 description = Galveston Island, Galveston County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz438.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz438.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz438.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz438.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz438.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz438.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz438.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz438.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz438.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz438.txt
 station = ('kgls', 0.0005939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz438.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz438.txt
 
@@ -62783,17 +62783,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz438.txt
 centroid = (0.5146732, -1.6505771)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz439.txt
 description = Bolivar Peninsula, Galveston County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz439.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz439.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz439.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz439.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz439.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz439.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz439.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz439.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz439.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz439.txt
 station = ('kgls', 0.0059339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz439.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz439.txt
 
@@ -62801,17 +62801,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz439.txt
 centroid = (0.4786862, -1.6983816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz442.txt
 description = Kleberg County Island, Kleberg County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz442.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz442.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc273.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc273.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz442.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz442.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz442.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz442.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz442.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc273.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc273.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc273.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz442.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz442.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz442.txt
 station = ('kngp', 0.0044982)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz442.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz442.txt
 
@@ -62819,17 +62819,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz442.txt
 centroid = (0.4835923, -1.6958509)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz443.txt
 description = Nueces County Islands, Nueces County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz443.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz443.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc355.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc355.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz443.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz443.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz443.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz443.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz443.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc355.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc355.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc355.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz443.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz443.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz443.txt
 station = ('kngp', 0.0018764)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz443.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz443.txt
 
@@ -62837,17 +62837,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz443.txt
 centroid = (0.4927483, -1.6866635)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz447.txt
 description = Calhoun County Island, Calhoun County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz447.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz447.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz447.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz447.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz447.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz447.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz447.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz447.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz447.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz447.txt
 station = ('krkp', 0.0068428)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz447.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz447.txt
 
@@ -62855,17 +62855,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz447.txt
 centroid = (0.4695145, -1.6992683)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz451.txt
 description = Kenedy Island, Kenedy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz451.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz451.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc261.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc261.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz451.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz451.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz451.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz451.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz451.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc261.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc261.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc261.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz451.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz451.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz451.txt
 station = ('khrl', 0.0127714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz451.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz451.txt
 
@@ -62873,17 +62873,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz451.txt
 centroid = (0.4629119, -1.6978022)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz454.txt
 description = Willacy Island, Willacy County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz454.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz454.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc489.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc489.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz454.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz454.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz454.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz454.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz454.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc489.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc489.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc489.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz454.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz454.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz454.txt
 station = ('kpil', 0.0062798)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz454.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz454.txt
 
@@ -62891,17 +62891,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz454.txt
 centroid = (0.4563774, -1.6960464)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz455.txt
 description = Cameron Island, Cameron County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz455.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz455.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz455.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz455.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz455.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz455.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz455.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz455.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz455.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz455.txt
 station = ('kpil', 0.0024804)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz455.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz455.txt
 
@@ -62909,17 +62909,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz455.txt
 centroid = (0.5242445, -1.6457006)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz515.txt
 description = Upper Jefferson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc245.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc245.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc245.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc245.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc245.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz515.txt
 station = ('kbmt', 0.0012889)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc245.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz515.txt
 
@@ -62927,17 +62927,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz515.txt
 centroid = (0.5267857, -1.6389863)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz516.txt
 description = Northern Orange County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz516.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz516.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc361.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc361.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz516.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz516.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz516.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz516.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz516.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc361.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc361.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc361.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz516.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz516.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz516.txt
 station = ('korg', 0.0025210)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc361.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz516.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz516.txt
 
@@ -62945,17 +62945,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz516.txt
 centroid = (0.5205113, -1.6427877)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz615.txt
 description = Lower Jefferson County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz615.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz615.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc245.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc245.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz615.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz615.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz615.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz615.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz615.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc245.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc245.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc245.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz615.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz615.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz615.txt
 station = ('kbmt', 0.0045339)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc245.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz615.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz615.txt
 
@@ -62963,17 +62963,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz615.txt
 centroid = (0.5247175, -1.6385884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/tx/txz616.txt
 description = Southern Orange County, TX, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txz616.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txz616.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/tx/txc361.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/tx/txc361.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/tx/txz616.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/tx/txz616.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txz616.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txz616.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txz616.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/tx/txc361.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/tx/txc361.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/tx/txc361.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/tx/txz616.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/tx/txz616.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz616.txt
 station = ('korg', 0.0012205)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc361.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz616.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz616.txt
 
@@ -62981,17 +62981,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz616.txt
 centroid = (0.6505348, -1.9137832)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz022.txt
 description = Southeast Utah, San Juan County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz022.txt
 station = ('kbdg', 0.0059006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz022.txt
 
@@ -62999,17 +62999,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz022.txt
 centroid = (0.7115306, -1.9112071)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz023.txt
 description = Eastern Unita Mountains, Uintah County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz023.txt
 station = ('k40u', 0.0044493)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz023.txt
 
@@ -63017,17 +63017,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz023.txt
 centroid = (0.7018876, -1.9117988)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz024.txt
 description = Eastern Uinta Basin, Uintah County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz024.txt
 station = ('kvel', 0.0038406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz024.txt
 
@@ -63035,17 +63035,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz024.txt
 centroid = (0.6891450, -1.9123503)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz025.txt
 description = Tavaputs Plateau, Uintah County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz025.txt
 station = ('kcny', 0.0127747)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz025.txt
 
@@ -63053,17 +63053,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz025.txt
 centroid = (0.6782035, -1.9121705)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz027.txt
 description = Arches/Grand Flat, Grand County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz027.txt
 station = ('kcny', 0.0030460)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz027.txt
 
@@ -63071,17 +63071,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz027.txt
 centroid = (0.6640454, -1.9091040)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz028.txt
 description = La Sal and Abajo Mountains, San Juan County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz028.txt
 station = ('kbdg', 0.0082083)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz028.txt
 
@@ -63089,17 +63089,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz028.txt
 centroid = (0.6605059, -1.9199791)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz029.txt
 description = Canyonlands/Natural Bridges, San Juan County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz029.txt
 station = ('kbdg', 0.0085450)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz029.txt
 
@@ -63107,17 +63107,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz029.txt
 centroid = (0.7143493, -1.9763183)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz101.txt
 description = Great Salt Lake Desert and Mountains, Utah County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz101.txt
 station = ('kdpg', 0.0138959)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz101.txt
 
@@ -63125,17 +63125,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz101.txt
 centroid = (0.7045755, -1.9614726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz102.txt
 description = Tooele and Rush Valleys, Tooele County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz102.txt
 station = ('ktvy', 0.0042656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz102.txt
 
@@ -63143,17 +63143,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz102.txt
 centroid = (0.7279768, -1.9603887)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz103.txt
 description = Eastern Box Elder County, Box Elder County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz103.txt
 station = ('kbmc', 0.0043670)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz103.txt
 
@@ -63161,17 +63161,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz103.txt
 centroid = (0.7168800, -1.9573798)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz104.txt
 description = Northern Wasatch Front, Weber County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz104.txt
 station = ('khif', 0.0025177)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz104.txt
 
@@ -63179,17 +63179,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz104.txt
 centroid = (0.7099615, -1.9545611)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz105.txt
 description = Salt Lake Valley, Salt Lake County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz105.txt
 station = ('ku42', 0.0010204)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz105.txt
 
@@ -63197,17 +63197,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz105.txt
 centroid = (0.7008736, -1.9530234)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz106.txt
 description = Utah Valley, Utah County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz106.txt
 station = ('kpvu', 0.0026563)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz106.txt
 
@@ -63215,17 +63215,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz106.txt
 centroid = (0.7297047, -1.9531840)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz107.txt
 description = Cache Valley/Utah Portion, Cache County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz107.txt
 station = ('klgu', 0.0008911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz107.txt
 
@@ -63233,17 +63233,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz107.txt
 centroid = (0.7123404, -1.9465081)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz108.txt
 description = Wasatch Back, Weber County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz108.txt
 station = ('khcr', 0.0059423)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz108.txt
 
@@ -63251,17 +63251,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz108.txt
 centroid = (0.7274480, -1.9406525)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz109.txt
 description = Bear Lake and Bear River Valley, Rich County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz109.txt
 station = ('kevw', 0.0074986)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz109.txt
 
@@ -63269,17 +63269,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz109.txt
 centroid = (0.7227897, -1.9468450)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz110.txt
 description = Wasatch Mountains I-80 North, Weber County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz110.txt
 station = ('kbmc', 0.0071732)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz110.txt
 
@@ -63287,17 +63287,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz110.txt
 centroid = (0.7028127, -1.9481365)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz111.txt
 description = Wasatch Mountains South of I-80, Wasatch County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz111.txt
 station = ('kpvu', 0.0015708)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz111.txt
 
@@ -63305,17 +63305,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz111.txt
 centroid = (0.7102146, -1.9326624)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz112.txt
 description = Western Uinta Mountains, Wasatch County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz112.txt
 station = ('ku69', 0.0099090)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz112.txt
 
@@ -63323,17 +63323,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz112.txt
 centroid = (0.6947650, -1.9332489)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz113.txt
 description = Wasatch Plateau/Book Cliffs, Wasatch County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz113.txt
 station = ('kpuc', 0.0033315)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz113.txt
 
@@ -63341,17 +63341,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz113.txt
 centroid = (0.7024252, -1.9253512)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz114.txt
 description = Western Uinta Basin, Duchesne County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz114.txt
 station = ('ku69', 0.0012950)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz114.txt
 
@@ -63359,17 +63359,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz114.txt
 centroid = (0.6860366, -1.9753863)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz115.txt
 description = Western Millard and Juab Counties, Millard County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz115.txt
 station = ('kdta', 0.0091782)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz115.txt
 
@@ -63377,17 +63377,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz115.txt
 centroid = (0.6846682, -1.9586312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz116.txt
 description = Eastern Juab/Millard Counties, Millard County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz116.txt
 station = ('kdta', 0.0046936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz116.txt
 
@@ -63395,17 +63395,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz116.txt
 centroid = (0.6808250, -1.9509762)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz117.txt
 description = Central Mountains, Sevier County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz117.txt
 station = ('k41u', 0.0060874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz117.txt
 
@@ -63413,17 +63413,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz117.txt
 centroid = (0.6871763, -1.9489533)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz118.txt
 description = Sanpete Valley, Sanpete County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz118.txt
 station = ('k41u', 0.0010217)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz118.txt
 
@@ -63431,17 +63431,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz118.txt
 centroid = (0.6768125, -1.9554494)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz119.txt
 description = Sevier Valley, Sevier County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz119.txt
 station = ('kfom', 0.0054067)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz119.txt
 
@@ -63449,17 +63449,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz119.txt
 centroid = (0.6862181, -1.9354043)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz120.txt
 description = Castle Country, Sevier County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz120.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz120.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz120.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz120.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz120.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz120.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz120.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz120.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz120.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz120.txt
 station = ('kpuc', 0.0055557)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz120.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz120.txt
 
@@ -63467,17 +63467,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz120.txt
 centroid = (0.6784165, -1.9308927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz121.txt
 description = San Rafael Swell, Sevier County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz121.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz121.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz121.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz121.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz121.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz121.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz121.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz121.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz121.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz121.txt
 station = ('khve', 0.0079567)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz121.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz121.txt
 
@@ -63485,17 +63485,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz121.txt
 centroid = (0.6650595, -1.9800987)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz122.txt
 description = Southwest Utah, Washington County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz122.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz122.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz122.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz122.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz122.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz122.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz122.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz122.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz122.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz122.txt
 station = ('kmlf', 0.0080652)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz122.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz122.txt
 
@@ -63503,17 +63503,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz122.txt
 centroid = (0.6486202, -1.9835458)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz123.txt
 description = Lower Washington County, Washington County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz123.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz123.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz123.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz123.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz123.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz123.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz123.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz123.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz123.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz123.txt
 station = ('ksgu', 0.0015506)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz123.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz123.txt
 
@@ -63521,17 +63521,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz123.txt
 centroid = (0.6506727, -1.9736061)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz124.txt
 description = Zion National Park, Washington County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz124.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz124.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz124.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz124.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz124.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz124.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz124.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz124.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz124.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz124.txt
 station = ('kazc', 0.0058781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz124.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz124.txt
 
@@ -63539,17 +63539,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz124.txt
 centroid = (0.6609056, -1.9629055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz125.txt
 description = Southern Mountains, Wayne County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz125.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz125.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz125.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz125.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz125.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz125.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz125.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz125.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz125.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz125.txt
 station = ('kbce', 0.0052468)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz125.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz125.txt
 
@@ -63557,17 +63557,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz125.txt
 centroid = (0.6664400, -1.9581146)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz126.txt
 description = Upper Sevier River Valleys, Sevier County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz126.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz126.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz126.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz126.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz126.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz126.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz126.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz126.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz126.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz126.txt
 station = ('ku52', 0.0066777)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz126.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz126.txt
 
@@ -63575,17 +63575,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz126.txt
 centroid = (0.6586524, -1.9574601)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz127.txt
 description = Bryce Canyon Country, Kane County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz127.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz127.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz127.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz127.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz127.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz127.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz127.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz127.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz127.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz127.txt
 station = ('kbce', 0.0006658)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz127.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz127.txt
 
@@ -63593,17 +63593,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz127.txt
 centroid = (0.6523325, -1.9515015)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz128.txt
 description = South Central Utah, Washington County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz128.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz128.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz128.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz128.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz128.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz128.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz128.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz128.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz128.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz128.txt
 station = ('kbce', 0.0073332)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz128.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz128.txt
 
@@ -63611,17 +63611,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz128.txt
 centroid = (0.6670963, -1.9419127)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz129.txt
 description = Capitol Reef National Park and Vicinity, Wayne County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz129.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz129.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz129.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz129.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz129.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz129.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz129.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz129.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz129.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz129.txt
 station = ('khve', 0.0083905)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz129.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz129.txt
 
@@ -63629,17 +63629,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz129.txt
 centroid = (0.6661869, -1.9299554)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz130.txt
 description = Western Canyonlands, Wayne County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz130.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz130.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz130.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz130.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz130.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz130.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz130.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz130.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz130.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz130.txt
 station = ('khve', 0.0046632)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz130.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz130.txt
 
@@ -63647,17 +63647,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz130.txt
 centroid = (0.6520812, -1.9336468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/ut/utz131.txt
 description = Glen Canyon Recreation Area/Lake Powell, San Juan County, UT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utz131.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utz131.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/ut/utc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/ut/utc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/ut/utz131.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/ut/utz131.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utz131.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utz131.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utz131.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/ut/utc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/ut/utc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/ut/utc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/ut/utz131.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/ut/utz131.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz131.txt
 station = ('kpga', 0.0118406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz131.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz131.txt
 
@@ -63665,17 +63665,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz131.txt
 centroid = (0.6406318, -1.4508660)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz001.txt
 description = Lee County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz001.txt
 station = ('k0vg', 0.0015405)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz001.txt
 
@@ -63683,17 +63683,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz001.txt
 centroid = (0.6453268, -1.4420137)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz002.txt
 description = Wise, City of Norton County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac720.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac720.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac720.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac720.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac720.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz002.txt
 station = ('klnp', 0.0012361)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac720.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz002.txt
 
@@ -63701,17 +63701,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz002.txt
 centroid = (0.6479674, -1.4372839)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz003.txt
 description = Dickenson County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz003.txt
 station = ('klnp', 0.0035612)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz003.txt
 
@@ -63719,17 +63719,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz003.txt
 centroid = (0.6504249, -1.4317983)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz004.txt
 description = Buchanan County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz004.txt
 station = ('kjfz', 0.0048446)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz004.txt
 
@@ -63737,17 +63737,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz004.txt
 centroid = (0.6407837, -1.4416943)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz005.txt
 description = Scott County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac169.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac169.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac169.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac169.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac169.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz005.txt
 station = ('klnp', 0.0047970)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac169.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz005.txt
 
@@ -63755,17 +63755,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz005.txt
 centroid = (0.6446164, -1.4328385)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz006.txt
 description = Russell County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac167.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac167.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac167.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac167.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac167.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz006.txt
 station = ('kvji', 0.0044572)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac167.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz006.txt
 
@@ -63773,17 +63773,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz006.txt
 centroid = (0.6479535, -1.4235010)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz007.txt
 description = Tazewell County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac185.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac185.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac185.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac185.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac185.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz007.txt
 station = ('kjfz', 0.0034778)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac185.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz007.txt
 
@@ -63791,17 +63791,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz007.txt
 centroid = (0.6409216, -1.4305452)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz008.txt
 description = Washington, City of Bristol County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac520.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac520.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac520.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac520.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac520.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz008.txt
 station = ('kvji', 0.0011805)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac520.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz008.txt
 
@@ -63809,17 +63809,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz008.txt
 centroid = (0.6430474, -1.4230891)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz009.txt
 description = Smyth County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac173.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac173.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac173.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac173.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac173.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz009.txt
 station = ('kmkj', 0.0027885)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac173.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz009.txt
 
@@ -63827,17 +63827,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz009.txt
 centroid = (0.6481106, -1.4159891)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz010.txt
 description = Bland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz010.txt
 station = ('kblf', 0.0030554)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz010.txt
 
@@ -63845,17 +63845,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz010.txt
 centroid = (0.6512539, -1.4085453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz011.txt
 description = Giles County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz011.txt
 station = ('kpsk', 0.0031676)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz011.txt
 
@@ -63863,17 +63863,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz011.txt
 centroid = (0.6443249, -1.4150885)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz012.txt
 description = Wythe County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac197.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac197.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac197.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac197.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac197.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz012.txt
 station = ('khlx', 0.0045032)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac197.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz012.txt
 
@@ -63881,17 +63881,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz012.txt
 centroid = (0.6469133, -1.4086483)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz013.txt
 description = Pulaski, City of Radford County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac750.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac750.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac750.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac750.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac750.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz013.txt
 station = ('kpsk', 0.0012408)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac750.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz013.txt
 
@@ -63899,17 +63899,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz013.txt
 centroid = (0.6488087, -1.4030161)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz014.txt
 description = Montgomery County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz014.txt
 station = ('kbcb', 0.0008519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz014.txt
 
@@ -63917,17 +63917,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz014.txt
 centroid = (0.6397784, -1.4176437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz015.txt
 description = Grayson County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz015.txt
 station = ('kmkj', 0.0045935)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz015.txt
 
@@ -63935,17 +63935,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz015.txt
 centroid = (0.6410664, -1.4091265)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz016.txt
 description = Carroll, City of Galax County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac640.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac640.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac640.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac640.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac640.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz016.txt
 station = ('khlx', 0.0012814)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac640.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz016.txt
 
@@ -63953,17 +63953,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz016.txt
 centroid = (0.6445763, -1.4025920)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz017.txt
 description = Floyd County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz017.txt
 station = ('kbcb', 0.0050337)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz017.txt
 
@@ -63971,17 +63971,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz017.txt
 centroid = (0.6541721, -1.3999687)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz018.txt
 description = Craig County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz018.txt
 station = ('kroa', 0.0044560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz018.txt
 
@@ -63989,17 +63989,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz018.txt
 centroid = (0.6595163, -1.3963803)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz019.txt
 description = Alleghany, City of Covington County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac580.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac580.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac580.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac580.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac580.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz019.txt
 station = ('khsp', 0.0037080)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac580.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz019.txt
 
@@ -64007,17 +64007,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz019.txt
 centroid = (0.6642496, -1.3917447)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz020.txt
 description = Bath County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz020.txt
 station = ('khsp', 0.0022822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz020.txt
 
@@ -64025,17 +64025,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz020.txt
 centroid = (0.6505086, -1.3971710)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz022.txt
 description = Roanoke, City of Salem County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac775.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac775.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac775.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac775.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac775.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz022.txt
 station = ('kroa', 0.0014241)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac775.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz022.txt
 
@@ -64043,17 +64043,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz022.txt
 centroid = (0.6554951, -1.3929874)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz023.txt
 description = Botetourt County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz023.txt
 station = ('kroa', 0.0047102)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz023.txt
 
@@ -64061,17 +64061,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz023.txt
 centroid = (0.6599718, -1.3866030)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz024.txt
 description = Rockbridge, City of Lexington County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac678.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac678.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac678.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac678.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac678.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz024.txt
 station = ('khsp', 0.0058364)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac678.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz024.txt
 
@@ -64079,17 +64079,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz024.txt
 centroid = (0.6660700, -1.3810598)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz025.txt
 description = Augusta, City of Waynesboro County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac820.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac820.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac820.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac820.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac820.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz025.txt
 station = ('kw13', 0.0029455)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac820.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz025.txt
 
@@ -64097,17 +64097,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz025.txt
 centroid = (0.6721368, -1.3766407)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz026.txt
 description = Rockingham, City of Harrisonburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac660.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac660.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac660.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac660.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac660.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz026.txt
 station = ('kvbw', 0.0027650)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac660.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz026.txt
 
@@ -64115,17 +64115,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz026.txt
 centroid = (0.6782088, -1.3713122)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz027.txt
 description = Shenandoah County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac171.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac171.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac171.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac171.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac171.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz027.txt
 station = ('klua', 0.0034730)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac171.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz027.txt
 
@@ -64133,17 +64133,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz027.txt
 centroid = (0.6842371, -1.3659051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz028.txt
 description = Frederick, City of Winchester County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac840.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac840.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac840.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac840.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac840.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz028.txt
 station = ('kokv', 0.0017675)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac840.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz028.txt
 
@@ -64151,17 +64151,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz028.txt
 centroid = (0.6740462, -1.3698060)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz029.txt
 description = Page County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz029.txt
 station = ('klua', 0.0008523)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz029.txt
 
@@ -64169,17 +64169,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz029.txt
 centroid = (0.6790849, -1.3649731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz030.txt
 description = Warren County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz030.txt
 station = ('kfrr', 0.0006473)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz030.txt
 
@@ -64187,17 +64187,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz030.txt
 centroid = (0.6826367, -1.3612975)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz031.txt
 description = Clarke County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz031.txt
 station = ('kokv', 0.0021791)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz031.txt
 
@@ -64205,17 +64205,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz031.txt
 centroid = (0.6401588, -1.4012254)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz032.txt
 description = Patrick County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz032.txt
 station = ('kmtv', 0.0038290)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz032.txt
 
@@ -64223,17 +64223,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz032.txt
 centroid = (0.6456322, -1.3941865)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz033.txt
 description = Franklin County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz033.txt
 station = ('kroa', 0.0057904)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz033.txt
 
@@ -64241,17 +64241,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz033.txt
 centroid = (0.6512731, -1.3879591)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz034.txt
 description = Bedford County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz034.txt
 station = ('klyh', 0.0045002)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz034.txt
 
@@ -64259,17 +64259,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz034.txt
 centroid = (0.6563276, -1.3813426)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz035.txt
 description = Amherst County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz035.txt
 station = ('klyh', 0.0050861)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz035.txt
 
@@ -64277,17 +64277,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz035.txt
 centroid = (0.6595145, -1.3768327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz036.txt
 description = Nelson County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz036.txt
 station = ('kw13', 0.0051148)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz036.txt
 
@@ -64295,17 +64295,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz036.txt
 centroid = (0.6636283, -1.3710521)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz037.txt
 description = Albemarle, City of Charlottesville County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac540.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac540.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac540.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac540.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac540.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz037.txt
 station = ('kcho', 0.0024088)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac540.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz037.txt
 
@@ -64313,17 +64313,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz037.txt
 centroid = (0.6684210, -1.3695058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz038.txt
 description = Greene County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz038.txt
 station = ('kcho', 0.0028781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz038.txt
 
@@ -64331,17 +64331,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz038.txt
 centroid = (0.6704455, -1.3662298)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz039.txt
 description = Madison County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz039.txt
 station = ('komh', 0.0043215)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz039.txt
 
@@ -64349,17 +64349,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz039.txt
 centroid = (0.6751719, -1.3641371)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz040.txt
 description = Rappahannock County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac157.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac157.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac157.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac157.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac157.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz040.txt
 station = ('kfrr', 0.0042637)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac157.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz040.txt
 
@@ -64367,17 +64367,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz040.txt
 centroid = (0.6402356, -1.3940573)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz043.txt
 description = Henry, City of Martinsville County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac690.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac690.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac690.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac690.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac690.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz043.txt
 station = ('kmtv', 0.0021812)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac690.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz043.txt
 
@@ -64385,17 +64385,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz043.txt
 centroid = (0.6424749, -1.3857495)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz044.txt
 description = Pittsylvania, City of Danville County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac590.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac590.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac590.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac590.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac590.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz044.txt
 station = ('kdan', 0.0043600)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac590.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz044.txt
 
@@ -64403,17 +64403,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz044.txt
 centroid = (0.6496657, -1.3806392)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz045.txt
 description = Campbell, City of Lynchburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac680.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac680.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac680.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac680.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac680.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz045.txt
 station = ('klyh', 0.0021012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac680.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz045.txt
 
@@ -64421,17 +64421,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz045.txt
 centroid = (0.6522679, -1.3755306)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz046.txt
 description = Appomattox County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz046.txt
 station = ('kfvx', 0.0052686)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz046.txt
 
@@ -64439,17 +64439,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz046.txt
 centroid = (0.6557586, -1.3705844)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz047.txt
 description = Buckingham County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz047.txt
 station = ('kfvx', 0.0040970)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz047.txt
 
@@ -64457,17 +64457,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz047.txt
 centroid = (0.6604658, -1.3661984)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz048.txt
 description = Fluvanna County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz048.txt
 station = ('klku', 0.0051437)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz048.txt
 
@@ -64475,17 +64475,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz048.txt
 centroid = (0.6675239, -1.3615907)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz050.txt
 description = Orange County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz050.txt
 station = ('komh', 0.0004410)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz050.txt
 
@@ -64493,17 +64493,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz050.txt
 centroid = (0.6717092, -1.3605871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz051.txt
 description = Culpeper County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz051.txt
 station = ('kcjr', 0.0015023)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz051.txt
 
@@ -64511,17 +64511,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz051.txt
 centroid = (0.6778632, -1.3487747)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz053.txt
 description = Fairfax, City of Fairfax County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac600.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac600.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac600.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac600.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac600.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz053.txt
 station = ('kdaa', 0.0024969)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac600.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz053.txt
 
@@ -64529,17 +64529,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz053.txt
 centroid = (0.6781948, -1.3456297)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz054.txt
 description = Arlington/Falls Church/Alexandria, City of Falls Church County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac610.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac610.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac610.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac610.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac610.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz054.txt
 station = ('kdca', 0.0009012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac610.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz054.txt
 
@@ -64547,17 +64547,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz054.txt
 centroid = (0.6705782, -1.3519373)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz055.txt
 description = Stafford County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac179.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac179.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac179.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac179.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac179.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz055.txt
 station = ('krmn', 0.0004115)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac179.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz055.txt
 
@@ -64565,17 +64565,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz055.txt
 centroid = (0.6665098, -1.3552918)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz056.txt
 description = Spotsylvania, City of Fredericksburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac630.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac630.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac630.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac630.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac630.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz056.txt
 station = ('kezf', 0.0030958)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac630.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz056.txt
 
@@ -64583,17 +64583,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz056.txt
 centroid = (0.6679881, -1.3466472)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz057.txt
 description = King George County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz057.txt
 station = ('kezf', 0.0040136)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz057.txt
 
@@ -64601,17 +64601,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz057.txt
 centroid = (0.6417052, -1.3777053)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz058.txt
 description = Halifax County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz058.txt
 station = ('kcxe', 0.0060938)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz058.txt
 
@@ -64619,17 +64619,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz058.txt
 centroid = (0.6459743, -1.3729039)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz059.txt
 description = Charlotte County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz059.txt
 station = ('kcxe', 0.0044918)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz059.txt
 
@@ -64637,17 +64637,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz059.txt
 centroid = (0.6496866, -1.3690555)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz060.txt
 description = Prince Edward County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac147.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac147.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac147.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac147.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac147.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz060.txt
 station = ('kfvx', 0.0021965)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac147.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz060.txt
 
@@ -64655,17 +64655,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz060.txt
 centroid = (0.6547079, -1.3656329)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz061.txt
 description = Cumberland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz061.txt
 station = ('kfvx', 0.0038480)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz061.txt
 
@@ -64673,17 +64673,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz061.txt
 centroid = (0.6583731, -1.3598977)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz062.txt
 description = Goochland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz062.txt
 station = ('k7w4', 0.0048609)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz062.txt
 
@@ -64691,17 +64691,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz062.txt
 centroid = (0.6636998, -1.3499685)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz064.txt
 description = Caroline County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz064.txt
 station = ('kezf', 0.0044099)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz064.txt
 
@@ -64709,17 +64709,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz064.txt
 centroid = (0.6401938, -1.3676871)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz065.txt
 description = Mecklenburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz065.txt
 station = ('kcxe', 0.0027058)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz065.txt
 
@@ -64727,17 +64727,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz065.txt
 centroid = (0.6448328, -1.3655561)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz066.txt
 description = Lunenburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz066.txt
 station = ('kw31', 0.0008131)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz066.txt
 
@@ -64745,17 +64745,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz066.txt
 centroid = (0.6482694, -1.3622504)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz067.txt
 description = Nottoway County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz067.txt
 station = ('kbkt', 0.0017527)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz067.txt
 
@@ -64763,17 +64763,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz067.txt
 centroid = (0.6516361, -1.3609397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz068.txt
 description = Amelia County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz068.txt
 station = ('kbkt', 0.0044248)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz068.txt
 
@@ -64781,17 +64781,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz068.txt
 centroid = (0.6553746, -1.3598768)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz069.txt
 description = Powhatan County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac145.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac145.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac145.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac145.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac145.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz069.txt
 station = ('kfci', 0.0059581)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac145.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz069.txt
 
@@ -64799,17 +64799,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz069.txt
 centroid = (0.6656092, -1.3391091)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz075.txt
 description = Westmoreland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz075.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz075.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac193.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac193.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz075.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz075.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz075.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz075.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz075.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac193.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac193.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac193.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz075.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz075.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz075.txt
 station = ('k2w6', 0.0039375)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac193.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz075.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz075.txt
 
@@ -64817,17 +64817,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz075.txt
 centroid = (0.6622285, -1.3391021)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz076.txt
 description = Richmond County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz076.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz076.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac159.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac159.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz076.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz076.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz076.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz076.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz076.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac159.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac159.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac159.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz076.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz076.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz076.txt
 station = ('kxsa', 0.0027465)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac159.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz076.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz076.txt
 
@@ -64835,17 +64835,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz076.txt
 centroid = (0.6612407, -1.3338295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz077.txt
 description = Northumberland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz077.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz077.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz077.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz077.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz077.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz077.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz077.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz077.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz077.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz077.txt
 station = ('knui', 0.0046032)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz077.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz077.txt
 
@@ -64853,17 +64853,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz077.txt
 centroid = (0.6586366, -1.3345660)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz078.txt
 description = Lancaster County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz078.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz078.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz078.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz078.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz078.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz078.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz078.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz078.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz078.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz078.txt
 station = ('kw75', 0.0023645)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz078.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz078.txt
 
@@ -64871,17 +64871,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz078.txt
 centroid = (0.6416668, -1.3588959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz079.txt
 description = Brunswick County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz079.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz079.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz079.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz079.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz079.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz079.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz079.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz079.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz079.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz079.txt
 station = ('klvl', 0.0009257)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz079.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz079.txt
 
@@ -64889,17 +64889,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz079.txt
 centroid = (0.6470965, -1.3549392)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz080.txt
 description = Dinwiddie County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz080.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz080.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz080.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz080.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz080.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz080.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz080.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz080.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz080.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz080.txt
 station = ('kptb', 0.0024708)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz080.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz080.txt
 
@@ -64907,17 +64907,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz080.txt
 centroid = (0.6491141, -1.3480731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz081.txt
 description = Prince George, City of Petersburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz081.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz081.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac730.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac730.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz081.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz081.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz081.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz081.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz081.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac730.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac730.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac730.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz081.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz081.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz081.txt
 station = ('kptb', 0.0038648)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac730.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz081.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz081.txt
 
@@ -64925,17 +64925,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz081.txt
 centroid = (0.6519939, -1.3449734)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz082.txt
 description = Charles City County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz082.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz082.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac036.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac036.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz082.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz082.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz082.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz082.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz082.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac036.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac036.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac036.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz082.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz082.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz082.txt
 station = ('kw96', 0.0027106)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac036.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz082.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz082.txt
 
@@ -64943,17 +64943,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz082.txt
 centroid = (0.6545892, -1.3438547)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz083.txt
 description = New Kent County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz083.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz083.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz083.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz083.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz083.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz083.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz083.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz083.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz083.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz083.txt
 station = ('kw96', 0.0017768)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz083.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz083.txt
 
@@ -64961,17 +64961,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz083.txt
 centroid = (0.6532017, -1.3359291)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz084.txt
 description = Gloucester County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz084.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz084.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz084.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz084.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz084.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz084.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz084.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz084.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz084.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz084.txt
 station = ('kw75', 0.0033604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz084.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz084.txt
 
@@ -64979,17 +64979,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz084.txt
 centroid = (0.6568599, -1.3365190)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz085.txt
 description = Middlesex County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz085.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz085.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz085.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz085.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz085.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz085.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz085.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz085.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz085.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz085.txt
 station = ('kw75', 0.0018893)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz085.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz085.txt
 
@@ -64997,17 +64997,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz085.txt
 centroid = (0.6537602, -1.3324123)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz086.txt
 description = Mathews County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz086.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz086.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz086.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz086.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz086.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz086.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz086.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz086.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz086.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz086.txt
 station = ('kw75', 0.0029145)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz086.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz086.txt
 
@@ -65015,17 +65015,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz086.txt
 centroid = (0.6401222, -1.3536599)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz087.txt
 description = Greensville, City of Emporia County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz087.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz087.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac595.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac595.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz087.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz087.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz087.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz087.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz087.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac595.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac595.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac595.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz087.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz087.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz087.txt
 station = ('kemv', 0.0010829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac595.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz087.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz087.txt
 
@@ -65033,17 +65033,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz087.txt
 centroid = (0.6444070, -1.3484728)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz088.txt
 description = Sussex County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz088.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz088.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac183.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac183.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz088.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz088.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz088.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz088.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz088.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac183.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac183.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac183.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz088.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz088.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz088.txt
 station = ('kakq', 0.0038061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac183.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz088.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz088.txt
 
@@ -65051,17 +65051,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz088.txt
 centroid = (0.6478121, -1.3419540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz089.txt
 description = Surry County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz089.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz089.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac181.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac181.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz089.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz089.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz089.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz089.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz089.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac181.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac181.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac181.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz089.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz089.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz089.txt
 station = ('kakq', 0.0028027)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac181.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz089.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz089.txt
 
@@ -65069,17 +65069,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz089.txt
 centroid = (0.6514686, -1.3399678)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz090.txt
 description = James City, City of Williamsburg County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz090.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz090.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac830.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac830.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz090.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz090.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz090.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz090.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz090.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac830.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac830.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac830.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz090.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz090.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz090.txt
 station = ('kfyj', 0.0034012)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac830.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz090.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz090.txt
 
@@ -65087,17 +65087,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz090.txt
 centroid = (0.6408832, -1.3457152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz092.txt
 description = Southampton, City of Franklin County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz092.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz092.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac620.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac620.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz092.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz092.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz092.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz092.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz092.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac620.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac620.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac620.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz092.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz092.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz092.txt
 station = ('kfkn', 0.0028726)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac620.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz092.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz092.txt
 
@@ -65105,17 +65105,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz092.txt
 centroid = (0.6441434, -1.3388264)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz093.txt
 description = Isle of Wight County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz093.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz093.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz093.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz093.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz093.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz093.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz093.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz093.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz093.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz093.txt
 station = ('kfaf', 0.0041599)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz093.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz093.txt
 
@@ -65123,17 +65123,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz093.txt
 centroid = (0.6439549, -1.3324332)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz095.txt
 description = Norfolk/Portsmouth, City of Portsmouth County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz095.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz095.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac740.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac740.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz095.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz095.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz095.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz095.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz095.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac740.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac740.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac740.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz095.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz095.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz095.txt
 station = ('kngu', 0.0009288)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac740.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz095.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz095.txt
 
@@ -65141,17 +65141,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz095.txt
 centroid = (0.6439130, -1.3347388)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz096.txt
 description = Suffolk, City of Suffolk County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz096.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz096.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac800.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac800.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz096.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz096.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz096.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz096.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz096.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac800.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac800.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac800.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz096.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz096.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz096.txt
 station = ('kpvg', 0.0020075)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac800.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz096.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz096.txt
 
@@ -65159,17 +65159,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz096.txt
 centroid = (0.6401484, -1.3317281)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz097.txt
 description = Chesapeake, City of Chesapeake County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz097.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz097.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac550.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac550.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz097.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz097.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz097.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz097.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz097.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac550.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac550.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac550.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz097.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz097.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz097.txt
 station = ('kcpk', 0.0003321)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac550.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz097.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz097.txt
 
@@ -65177,17 +65177,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz097.txt
 centroid = (0.6413980, -1.3274468)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz098.txt
 description = Virginia Beach, City of Virginia Beach County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz098.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz098.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac810.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac810.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz098.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz098.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz098.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz098.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz098.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac810.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac810.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac810.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz098.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz098.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz098.txt
 station = ('kntu', 0.0012201)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac810.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz098.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz098.txt
 
@@ -65195,17 +65195,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz098.txt
 centroid = (0.6591393, -1.3202927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz099.txt
 description = Accomack County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz099.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz099.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz099.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz099.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz099.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz099.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz099.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz099.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz099.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz099.txt
 station = ('kmfv', 0.0026102)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz099.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz099.txt
 
@@ -65213,17 +65213,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz099.txt
 centroid = (0.6519957, -1.3246962)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz100.txt
 description = Northampton County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz100.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz100.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz100.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz100.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz100.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz100.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz100.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz100.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz100.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz100.txt
 station = ('kmfv', 0.0054411)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz100.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz100.txt
 
@@ -65231,17 +65231,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz100.txt
 centroid = (0.6781302, -1.3593514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz501.txt
 description = Northern Fauquier County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz501.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz501.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz501.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz501.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz501.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz501.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz501.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz501.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz501.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz501.txt
 station = ('khwy', 0.0052418)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz501.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz501.txt
 
@@ -65249,17 +65249,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz501.txt
 centroid = (0.6736151, -1.3563896)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz502.txt
 description = Southern Fauquier County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz502.txt
 station = ('khwy', 0.0001702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz502.txt
 
@@ -65267,17 +65267,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz502.txt
 centroid = (0.6706532, -1.3903607)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz503.txt
 description = Western Highland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz503.txt
 station = ('kekn', 0.0083907)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz503.txt
 
@@ -65285,17 +65285,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz503.txt
 centroid = (0.6690109, -1.3879382)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz504.txt
 description = Eastern Highland County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz504.txt
 station = ('khsp', 0.0079045)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz504.txt
 
@@ -65303,17 +65303,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz504.txt
 centroid = (0.6830119, -1.3560563)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz505.txt
 description = Western Loudoun County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz505.txt
 station = ('kjyo', 0.0019634)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz505.txt
 
@@ -65321,17 +65321,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz505.txt
 centroid = (0.6807692, -1.3528937)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz506.txt
 description = Eastern Loudoun County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz506.txt
 station = ('kjyo', 0.0015324)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz506.txt
 
@@ -65339,17 +65339,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz506.txt
 centroid = (0.6724265, -1.3689019)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz507.txt
 description = Northern Virginia Blue Ridge, Warren County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac187.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac187.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac187.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac187.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac187.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz507.txt
 station = ('klua', 0.0026134)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac187.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz507.txt
 
@@ -65357,17 +65357,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz507.txt
 centroid = (0.6630314, -1.3778833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz508.txt
 description = Central Virginia Blue Ridge, Rockbridge County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac163.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac163.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac163.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac163.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac163.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz508.txt
 station = ('kw13', 0.0015363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac163.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz508.txt
 
@@ -65375,17 +65375,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz508.txt
 centroid = (0.6639372, -1.3632086)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz509.txt
 description = Western Louisa County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz509.txt
 station = ('kgve', 0.0021714)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz509.txt
 
@@ -65393,17 +65393,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz509.txt
 centroid = (0.6620645, -1.3589273)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz510.txt
 description = Eastern Louisa County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz510.txt
 station = ('k7w4', 0.0016788)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz510.txt
 
@@ -65411,17 +65411,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz510.txt
 centroid = (0.6598915, -1.3540666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz511.txt
 description = Western Hanover County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz511.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz511.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz511.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz511.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz511.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz511.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz511.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz511.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz511.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz511.txt
 station = ('kofp', 0.0028009)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz511.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz511.txt
 
@@ -65429,17 +65429,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz511.txt
 centroid = (0.6539243, -1.3487782)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz512.txt
 description = Eastern Hanover County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz512.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz512.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz512.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz512.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz512.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz512.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz512.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz512.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz512.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz512.txt
 station = ('kric', 0.0010080)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz512.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz512.txt
 
@@ -65447,17 +65447,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz512.txt
 centroid = (0.6523430, -1.3540875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz513.txt
 description = Western Chesterfield County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz513.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz513.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz513.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz513.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz513.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz513.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz513.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz513.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz513.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz513.txt
 station = ('kfci', 0.0009655)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz513.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz513.txt
 
@@ -65465,17 +65465,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz513.txt
 centroid = (0.6523430, -1.3540875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz514.txt
 description = Eastern Chesterfield (Including Col. Heights), City of Colonial Heights County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz514.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz514.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac570.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac570.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz514.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz514.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz514.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz514.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz514.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac570.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac570.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac570.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz514.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz514.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz514.txt
 station = ('kfci', 0.0009655)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac570.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz514.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz514.txt
 
@@ -65483,17 +65483,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz514.txt
 centroid = (0.6550099, -1.3522008)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz515.txt
 description = Western Henrico (Including the City of Richmond), City of Richmond County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac760.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac760.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac760.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac760.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac760.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz515.txt
 station = ('kfci', 0.0022507)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac760.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz515.txt
 
@@ -65501,17 +65501,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz515.txt
 centroid = (0.6551303, -1.3512339)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz516.txt
 description = Eastern Henrico County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz516.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz516.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz516.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz516.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz516.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz516.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz516.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz516.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz516.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz516.txt
 station = ('kric', 0.0014704)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz516.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz516.txt
 
@@ -65519,17 +65519,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz516.txt
 centroid = (0.6581061, -1.3454464)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz517.txt
 description = Western King William County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz517.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz517.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz517.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz517.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz517.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz517.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz517.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz517.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz517.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz517.txt
 station = ('kw96', 0.0035886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz517.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz517.txt
 
@@ -65537,17 +65537,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz517.txt
 centroid = (0.6581061, -1.3454464)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz518.txt
 description = Eastern King William County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz518.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz518.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz518.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz518.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz518.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz518.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz518.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz518.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz518.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz518.txt
 station = ('kw96', 0.0035886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz518.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz518.txt
 
@@ -65555,17 +65555,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz518.txt
 centroid = (0.6583015, -1.3420639)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz519.txt
 description = Western King and Queen County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz519.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz519.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz519.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz519.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz519.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz519.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz519.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz519.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz519.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz519.txt
 station = ('kxsa', 0.0024731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz519.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz519.txt
 
@@ -65573,17 +65573,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz519.txt
 centroid = (0.6583015, -1.3420639)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz520.txt
 description = Eastern King and Queen County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz520.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz520.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz520.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz520.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz520.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz520.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz520.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz520.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz520.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz520.txt
 station = ('kxsa', 0.0024731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz520.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz520.txt
 
@@ -65591,17 +65591,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz520.txt
 centroid = (0.6614065, -1.3405525)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz521.txt
 description = Western Essex County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz521.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz521.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz521.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz521.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz521.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz521.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz521.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz521.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz521.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz521.txt
 station = ('kxsa', 0.0013439)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz521.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz521.txt
 
@@ -65609,17 +65609,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz521.txt
 centroid = (0.6622233, -1.3430623)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz522.txt
 description = Eastern Essex County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz522.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz522.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz522.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz522.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz522.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz522.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz522.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz522.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz522.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz522.txt
 station = ('kxsa', 0.0016523)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz522.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz522.txt
 
@@ -65627,17 +65627,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz522.txt
 centroid = (0.6496849, -1.3358453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz523.txt
 description = York, City of Poquoson County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz523.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz523.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac735.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac735.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz523.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz523.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz523.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz523.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz523.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac735.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac735.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac735.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz523.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz523.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz523.txt
 station = ('kphf', 0.0016730)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac735.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz523.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz523.txt
 
@@ -65645,17 +65645,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz523.txt
 centroid = (0.6471157, -1.3352781)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz524.txt
 description = Newport News/Hampton, City of Newport News County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz524.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz524.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac700.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac700.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz524.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz524.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz524.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz524.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz524.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac700.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac700.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac700.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz524.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz524.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz524.txt
 station = ('kphf', 0.0009865)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac700.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz524.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz524.txt
 
@@ -65663,17 +65663,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz524.txt
 centroid = (0.6467038, -1.3328608)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz525.txt
 description = Hampton/Poquoson, City of Hampton County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz525.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz525.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac650.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac650.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz525.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz525.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz525.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz525.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz525.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac650.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac650.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac650.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz525.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz525.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz525.txt
 station = ('klfi', 0.0005753)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac650.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz525.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz525.txt
 
@@ -65681,17 +65681,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz525.txt
 centroid = (0.6781459, -1.3549549)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz526.txt
 description = Northwest Prince William County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz526.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz526.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac153.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac153.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz526.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz526.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz526.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz526.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz526.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac153.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac153.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac153.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz526.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz526.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz526.txt
 station = ('khef', 0.0028869)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac153.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz526.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz526.txt
 
@@ -65699,17 +65699,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz526.txt
 centroid = (0.6749659, -1.3517366)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/va/vaz527.txt
 description = Central and Southeast Prince William/Manassas/Manassas Park, City of Manassas Park County, VA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vaz527.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vaz527.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/va/vac685.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/va/vac685.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/va/vaz527.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/va/vaz527.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vaz527.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vaz527.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vaz527.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/va/vac685.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/va/vac685.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/va/vac685.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/va/vaz527.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/va/vaz527.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz527.txt
 station = ('khef', 0.0012015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac685.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz527.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz527.txt
 
@@ -65717,17 +65717,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz527.txt
 centroid = (0.3201440, -1.1319577)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vi/viz001.txt
 description = St.Thomas...St. John.. and Adjacent Islands, Saint Thomas County, VI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vi/viz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vi/viz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vi/vic030.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vi/vic030.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vi/viz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vi/viz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vi/viz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vi/viz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vi/viz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vi/vic030.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vi/vic030.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vi/vic030.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vi/viz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vi/viz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vi/viz001.txt
 station = ('tist', 0.0021095)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vi/vic030.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vi/viz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz001.txt
 
@@ -65735,17 +65735,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz001.txt
 centroid = (0.3095045, -1.1304096)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vi/viz002.txt
 description = St Croix, Saint Croix County, VI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vi/viz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vi/viz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vi/vic010.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vi/vic010.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vi/viz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vi/viz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vi/viz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vi/viz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vi/viz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vi/vic010.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vi/vic010.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vi/vic010.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vi/viz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vi/viz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vi/viz002.txt
 station = ('tisx', 0.0007913)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vi/vic010.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vi/viz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz002.txt
 
@@ -65753,17 +65753,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz002.txt
 centroid = (0.7818517, -1.2792356)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz001.txt
 description = Grand Isle County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz001.txt
 station = ('kpbg', 0.0033327)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz001.txt
 
@@ -65771,17 +65771,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz001.txt
 centroid = (0.7828098, -1.2746838)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz002.txt
 description = Western Franklin County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz002.txt
 station = ('kfso', 0.0017343)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz002.txt
 
@@ -65789,17 +65789,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz002.txt
 centroid = (0.7824102, -1.2608922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz003.txt
 description = Orleans County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz003.txt
 station = ('kefk', 0.0010627)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz003.txt
 
@@ -65807,17 +65807,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz003.txt
 centroid = (0.7806526, -1.2520364)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz004.txt
 description = Essex County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz004.txt
 station = ('kcda', 0.0044640)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz004.txt
 
@@ -65825,17 +65825,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz004.txt
 centroid = (0.7763102, -1.2768166)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz005.txt
 description = Western Chittenden County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz005.txt
 station = ('kbtv', 0.0002336)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz005.txt
 
@@ -65843,17 +65843,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz005.txt
 centroid = (0.7785163, -1.2678316)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz006.txt
 description = Lamoille County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz006.txt
 station = ('kmvl', 0.0012999)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz006.txt
 
@@ -65861,17 +65861,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz006.txt
 centroid = (0.7760554, -1.2584208)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz007.txt
 description = Caledonia County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz007.txt
 station = ('k1v4', 0.0013560)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz007.txt
 
@@ -65879,17 +65879,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz007.txt
 centroid = (0.7727166, -1.2673691)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz008.txt
 description = Washington County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz008.txt
 station = ('kmpv', 0.0014160)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz008.txt
 
@@ -65897,17 +65897,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz008.txt
 centroid = (0.7683201, -1.2782687)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz009.txt
 description = Western Addison County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz009.txt
 station = ('k6b0', 0.0019069)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz009.txt
 
@@ -65915,17 +65915,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz009.txt
 centroid = (0.7680426, -1.2632152)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz010.txt
 description = Orange County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz010.txt
 station = ('kmpv', 0.0041435)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz010.txt
 
@@ -65933,17 +65933,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz010.txt
 centroid = (0.7607122, -1.2765303)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz011.txt
 description = Western Rutland County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz011.txt
 station = ('krut', 0.0025680)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz011.txt
 
@@ -65951,17 +65951,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz011.txt
 centroid = (0.7511112, -1.2757118)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz013.txt
 description = Bennington County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz013.txt
 station = ('kddh', 0.0033286)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz013.txt
 
@@ -65969,17 +65969,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz013.txt
 centroid = (0.7505178, -1.2703676)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz014.txt
 description = Western Windham County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz014.txt
 station = ('kvsf', 0.0069864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz014.txt
 
@@ -65987,17 +65987,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz014.txt
 centroid = (0.7499243, -1.2663812)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz015.txt
 description = Eastern Windham County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz015.txt
 station = ('keen', 0.0039084)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz015.txt
 
@@ -66005,17 +66005,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz015.txt
 centroid = (0.7830629, -1.2692994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz016.txt
 description = Eastern Franklin County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz016.txt
 station = ('cwfq', 0.0034734)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz016.txt
 
@@ -66023,17 +66023,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz016.txt
 centroid = (0.7753398, -1.2728459)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz017.txt
 description = Eastern Chittenden County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz017.txt
 station = ('kbtv', 0.0028576)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz017.txt
 
@@ -66041,17 +66041,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz017.txt
 centroid = (0.7687582, -1.2735214)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz018.txt
 description = Eastern Addison County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz018.txt
 station = ('k6b0', 0.0019214)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz018.txt
 
@@ -66059,17 +66059,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz018.txt
 centroid = (0.7604626, -1.2718825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz019.txt
 description = Eastern Rutland County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz019.txt
 station = ('krut', 0.0011728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz019.txt
 
@@ -66077,17 +66077,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz019.txt
 centroid = (0.7617891, -1.2689294)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz020.txt
 description = Western Windsor County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz020.txt
 station = ('krut', 0.0036883)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz020.txt
 
@@ -66095,17 +66095,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz020.txt
 centroid = (0.7596615, -1.2651804)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/vt/vtz021.txt
 description = Eastern Windsor County, VT, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/vt/vtc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/vt/vtc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/vt/vtz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/vt/vtz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/vt/vtc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/vt/vtc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/vt/vtc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/vt/vtz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/vt/vtz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz021.txt
 station = ('kleb', 0.0030478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz021.txt
 
@@ -66113,17 +66113,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz021.txt
 centroid = (0.8478565, -2.1461040)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz001.txt
 description = San Juan County, San Juan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz001.txt
 station = ('kfhr', 0.0013544)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz001.txt
 
@@ -66131,17 +66131,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz001.txt
 centroid = (0.7980221, -2.1096894)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz024.txt
 description = Eastern Columbia River Gorge of Washington, Klickitat County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz024.txt
 station = ('kdls', 0.0040006)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz024.txt
 
@@ -66149,17 +66149,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz024.txt
 centroid = (0.8193082, -2.0998754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz026.txt
 description = Kittitas Valley, Yakima County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz026.txt
 station = ('keln', 0.0030513)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz026.txt
 
@@ -66167,17 +66167,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz026.txt
 centroid = (0.8104105, -2.0998405)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz027.txt
 description = Yakima Valley, Yakima County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz027.txt
 station = ('kykm', 0.0035363)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz027.txt
 
@@ -66185,17 +66185,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz027.txt
 centroid = (0.8087385, -2.0801253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz028.txt
 description = Lower Columbia Basin of Washington, Walla Walla County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz028.txt
 station = ('kpsc', 0.0014656)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz028.txt
 
@@ -66203,17 +66203,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz028.txt
 centroid = (0.8082934, -2.0631939)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz029.txt
 description = Foothills of the Blue Mountains of Washington, Walla Walla County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz029.txt
 station = ('kalw', 0.0037949)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz029.txt
 
@@ -66221,17 +66221,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz029.txt
 centroid = (0.8054834, -2.0562213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz030.txt
 description = Northwest Blue Mountains, Walla Walla County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz030.txt
 station = ('kalw', 0.0057605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz030.txt
 
@@ -66239,17 +66239,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz030.txt
 centroid = (0.8062845, -2.0488403)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz031.txt
 description = Northeast Blue Mountains, Garfield County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz031.txt
 station = ('klws', 0.0053915)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz031.txt
 
@@ -66257,17 +66257,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz031.txt
 centroid = (0.8102167, -2.0486587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz032.txt
 description = Lower Garfield and Asotin Counties, Garfield County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz032.txt
 station = ('klws', 0.0044731)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz032.txt
 
@@ -66275,17 +66275,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz032.txt
 centroid = (0.8190341, -2.0508806)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz033.txt
 description = Washington Palouse, Whitman County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz033.txt
 station = ('kpuw', 0.0055911)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz033.txt
 
@@ -66293,17 +66293,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz033.txt
 centroid = (0.8204932, -2.0855253)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz034.txt
 description = Moses Lake Area, Grant County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz034.txt
 station = ('kmwh', 0.0039029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz034.txt
 
@@ -66311,17 +66311,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz034.txt
 centroid = (0.8265094, -2.0701630)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz035.txt
 description = Upper Columbia Basin, Okanogan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz035.txt
 station = ('keph', 0.0107505)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz035.txt
 
@@ -66329,17 +66329,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz035.txt
 centroid = (0.8310926, -2.0527341)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz036.txt
 description = Spokane Area, Spokane County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz036.txt
 station = ('kska', 0.0004360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz036.txt
 
@@ -66347,17 +66347,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz036.txt
 centroid = (0.8448825, -2.0527725)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz037.txt
 description = Northeast Mountains, Stevens County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz037.txt
 station = ('kdew', 0.0079915)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz037.txt
 
@@ -66365,17 +66365,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz037.txt
 centroid = (0.8470589, -2.0716831)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz038.txt
 description = Okanogan Highlands, Okanogan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz038.txt
 station = ('cwyy', 0.0121515)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz038.txt
 
@@ -66383,17 +66383,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz038.txt
 centroid = (0.8312933, -2.0982732)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz041.txt
 description = Wenatchee Area, Douglas County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz041.txt
 station = ('keat', 0.0040158)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz041.txt
 
@@ -66401,17 +66401,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz041.txt
 centroid = (0.8438597, -2.0848290)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz043.txt
 description = Okanogan Valley, Okanogan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz043.txt
 station = ('komk', 0.0021766)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz043.txt
 
@@ -66419,17 +66419,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz043.txt
 centroid = (0.8319548, -2.0888607)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz044.txt
 description = Waterville Plateau, Grant County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz044.txt
 station = ('keph', 0.0067071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz044.txt
 
@@ -66437,17 +66437,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz044.txt
 centroid = (0.8343773, -2.1035616)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz047.txt
 description = Central Chelan County, Chelan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz047.txt
 station = ('keat', 0.0080580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz047.txt
 
@@ -66455,17 +66455,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz047.txt
 centroid = (0.8382886, -2.1095620)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz048.txt
 description = Western Chelan County, Chelan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz048.txt
 station = ('ks52', 0.0108660)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz048.txt
 
@@ -66473,17 +66473,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz048.txt
 centroid = (0.8481969, -2.0972540)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz049.txt
 description = Western Okanogan County, Okanogan County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz049.txt
 station = ('ks52', 0.0030299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz049.txt
 
@@ -66491,17 +66491,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz049.txt
 centroid = (0.8117142, -2.1624821)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz201.txt
 description = South Washington Coast, Pacific County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz201.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz201.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz201.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz201.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz201.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz201.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz201.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz201.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz201.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz201.txt
 station = ('kast', 0.0062485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz201.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz201.txt
 
@@ -66509,17 +66509,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz201.txt
 centroid = (0.8112692, -2.1568185)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz202.txt
 description = Willapa and Wahkiakum Lowlands, Wahkiakum County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz202.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz202.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz202.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz202.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz202.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz202.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz202.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz202.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz202.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz202.txt
 station = ('kast', 0.0068781)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz202.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz202.txt
 
@@ -66527,17 +66527,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz202.txt
 centroid = (0.8109428, -2.1544449)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz203.txt
 description = Willapa Hills, Cowlitz County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz203.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz203.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz203.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz203.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz203.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz203.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz203.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz203.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz203.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz203.txt
 station = ('kast', 0.0076453)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz203.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz203.txt
 
@@ -66545,17 +66545,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz203.txt
 centroid = (0.8061589, -2.1452453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz204.txt
 description = Cowlitz County Lowlands, Cowlitz County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz204.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz204.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz204.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz204.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz204.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz204.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz204.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz204.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz204.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz204.txt
 station = ('kkls', 0.0012816)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz204.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz204.txt
 
@@ -66563,17 +66563,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz204.txt
 centroid = (0.7989890, -2.1398731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz205.txt
 description = North Clark County Lowlands, Clark County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz205.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz205.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz205.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz205.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz205.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz205.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz205.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz205.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz205.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz205.txt
 station = ('kvuo', 0.0028791)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz205.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz205.txt
 
@@ -66581,17 +66581,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz205.txt
 centroid = (0.7970535, -2.1405800)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz206.txt
 description = Inner Vancouver Metro, Clark County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz206.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz206.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz206.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz206.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz206.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz206.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz206.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz206.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz206.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz206.txt
 station = ('kvuo', 0.0008936)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz206.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz206.txt
 
@@ -66599,17 +66599,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz206.txt
 centroid = (0.7959434, -2.1362010)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz207.txt
 description = East Clark County Lowlands, Clark County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz207.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz207.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz207.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz207.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz207.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz207.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz207.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz207.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz207.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz207.txt
 station = ('kttd', 0.0009813)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz207.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz207.txt
 
@@ -66617,17 +66617,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz207.txt
 centroid = (0.8034396, -2.1389813)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz208.txt
 description = South Washington Cascade Foothills, Skamania County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz208.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz208.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz208.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz208.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz208.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz208.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz208.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz208.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz208.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz208.txt
 station = ('kkls', 0.0044256)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz208.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz208.txt
 
@@ -66635,17 +66635,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz208.txt
 centroid = (0.7965316, -2.1293994)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz209.txt
 description = West Columbia River Gorge - SR 14, Skamania County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz209.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz209.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz209.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz209.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz209.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz209.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz209.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz209.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz209.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz209.txt
 station = ('k4s2', 0.0057607)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz209.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz209.txt
 
@@ -66653,17 +66653,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz209.txt
 centroid = (0.7978808, -2.1242559)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz210.txt
 description = Central Columbia River Gorge - SR 14, Skamania County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz210.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz210.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz210.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz210.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz210.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz210.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz210.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz210.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz210.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz210.txt
 station = ('k4s2', 0.0022581)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz210.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz210.txt
 
@@ -66671,17 +66671,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz210.txt
 centroid = (0.8038271, -2.1295373)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz211.txt
 description = South Washington Cascades, Clark County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz211.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz211.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz211.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz211.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz211.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz211.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz211.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz211.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz211.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz211.txt
 station = ('k4s2', 0.0088562)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz211.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz211.txt
 
@@ -66689,17 +66689,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz211.txt
 centroid = (0.8527469, -2.1376304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz503.txt
 description = Western Whatcom County, Whatcom County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz503.txt
 station = ('kbli', 0.0012121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz503.txt
 
@@ -66707,17 +66707,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz503.txt
 centroid = (0.8154283, -2.1449625)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz504.txt
 description = Southwest Interior, Thurston County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz504.txt
 station = ('kcls', 0.0012773)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz504.txt
 
@@ -66725,17 +66725,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz504.txt
 centroid = (0.8458668, -2.1357036)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz506.txt
 description = Western Skagit County, Skagit County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz506.txt
 station = ('kbvs', 0.0006347)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz506.txt
 
@@ -66743,17 +66743,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz506.txt
 centroid = (0.8387162, -2.1337436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz507.txt
 description = Everett and Vicinity, Snohomish County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz507.txt
 station = ('kawo', 0.0022029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz507.txt
 
@@ -66761,17 +66761,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz507.txt
 centroid = (0.8232770, -2.1380999)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz509.txt
 description = Tacoma Area, Pierce County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz509.txt
 station = ('ktcm', 0.0004316)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz509.txt
 
@@ -66779,17 +66779,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz509.txt
 centroid = (0.8397320, -2.1404788)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz510.txt
 description = Admiralty Inlet Area, Jefferson County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz510.txt
 station = ('k0s9', 0.0022423)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz510.txt
 
@@ -66797,17 +66797,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz510.txt
 centroid = (0.8289930, -2.1461790)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz511.txt
 description = Hood Canal Area, Mason County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz511.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz511.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz511.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz511.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz511.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz511.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz511.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz511.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz511.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz511.txt
 station = ('kpwt', 0.0025590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz511.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz511.txt
 
@@ -66815,17 +66815,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz511.txt
 centroid = (0.8213153, -2.1556754)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz512.txt
 description = Lower Chehalis Valley Area, Mason County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz512.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz512.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz512.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz512.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz512.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz512.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz512.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz512.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz512.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz512.txt
 station = ('khqm', 0.0052710)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz512.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz512.txt
 
@@ -66833,17 +66833,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz512.txt
 centroid = (0.8334384, -2.1572095)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz513.txt
 description = Olympics, Mason County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz513.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz513.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz513.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz513.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz513.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz513.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz513.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz513.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz513.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz513.txt
 station = ('kclm', 0.0064605)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz513.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz513.txt
 
@@ -66851,17 +66851,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz513.txt
 centroid = (0.8390845, -2.1513190)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz514.txt
 description = Eastern Strait of Juan de Fuca, Clallam County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz514.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz514.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz514.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz514.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz514.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz514.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz514.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz514.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz514.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz514.txt
 station = ('know', 0.0018992)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz514.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz514.txt
 
@@ -66869,17 +66869,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz514.txt
 centroid = (0.8409782, -2.1667861)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz515.txt
 description = Western Strait of Juan De Fuca, Clallam County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz515.txt
 station = ('cwsp', 0.0043867)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz515.txt
 
@@ -66887,17 +66887,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz515.txt
 centroid = (0.8365520, -2.1713048)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz516.txt
 description = North Coast, Jefferson County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz516.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz516.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz516.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz516.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz516.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz516.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz516.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz516.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz516.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz516.txt
 station = ('kuil', 0.0018723)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz516.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz516.txt
 
@@ -66905,17 +66905,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz516.txt
 centroid = (0.8236244, -2.1646830)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz517.txt
 description = Central Coast, Grays Harbor County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz517.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz517.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz517.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz517.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz517.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz517.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz517.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz517.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz517.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz517.txt
 station = ('khqm', 0.0040578)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz517.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz517.txt
 
@@ -66923,17 +66923,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz517.txt
 centroid = (0.8023889, -2.1057834)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz521.txt
 description = Simcoe Highlands, Yakima County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz521.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz521.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz521.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz521.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz521.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz521.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz521.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz521.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz521.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz521.txt
 station = ('kdls', 0.0088280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz521.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz521.txt
 
@@ -66941,17 +66941,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz521.txt
 centroid = (0.8192209, -2.1165032)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz522.txt
 description = Upper Slopes of the Eastern Washington Cascades Crest, Yakima County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz522.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz522.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz522.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz522.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz522.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz522.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz522.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz522.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz522.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz522.txt
 station = ('ksmp', 0.0060807)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz522.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz522.txt
 
@@ -66959,17 +66959,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz522.txt
 centroid = (0.8108259, -2.1072878)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz523.txt
 description = Lower Slopes of the Eastern Washington Cascades Crest, Yakima County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz523.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz523.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz523.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz523.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz523.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz523.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz523.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz523.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz523.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz523.txt
 station = ('kykm', 0.0031233)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz523.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz523.txt
 
@@ -66977,17 +66977,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz523.txt
 centroid = (0.8387162, -2.1337436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz555.txt
 description = East Puget Sound Lowlands, Snohomish County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz555.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz555.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz555.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz555.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz555.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz555.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz555.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz555.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz555.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz555.txt
 station = ('kawo', 0.0022029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz555.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz555.txt
 
@@ -66995,17 +66995,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz555.txt
 centroid = (0.8301135, -2.1297642)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz556.txt
 description = Bellevue and Vicinity, Snohomish County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz556.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz556.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz556.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz556.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz556.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz556.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz556.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz556.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz556.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz556.txt
 station = ('krnt', 0.0024886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz556.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz556.txt
 
@@ -67013,17 +67013,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz556.txt
 centroid = (0.8293979, -2.1371539)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz558.txt
 description = Seattle and Vicinity, King County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz558.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz558.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz558.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz558.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz558.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz558.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz558.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz558.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz558.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz558.txt
 station = ('kbfi', 0.0016495)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz558.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz558.txt
 
@@ -67031,17 +67031,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz558.txt
 centroid = (0.8289930, -2.1461790)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz559.txt
 description = Bremerton and Vicinity, Kitsap County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz559.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz559.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz559.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz559.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz559.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz559.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz559.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz559.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz559.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz559.txt
 station = ('kpwt', 0.0025590)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz559.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz559.txt
 
@@ -67049,17 +67049,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz559.txt
 centroid = (0.8527469, -2.1376304)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz567.txt
 description = West Slopes North Cascades and Passes, Whatcom County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz567.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz567.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz567.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz567.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz567.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz567.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz567.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz567.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz567.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz567.txt
 station = ('kbli', 0.0012121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz567.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz567.txt
 
@@ -67067,17 +67067,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz567.txt
 centroid = (0.8387162, -2.1337436)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz568.txt
 description = West Slopes North Central Cascdes, Snohomish County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz568.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz568.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz568.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz568.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz568.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz568.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz568.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz568.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz568.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz568.txt
 station = ('kawo', 0.0022029)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz568.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz568.txt
 
@@ -67085,17 +67085,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz568.txt
 centroid = (0.8301135, -2.1297642)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wa/waz569.txt
 description = West Slopes South Central Cascades and Passes, Pierce County, WA, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/waz569.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/waz569.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wa/wac053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wa/wac053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wa/waz569.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wa/waz569.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/waz569.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/waz569.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/waz569.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wa/wac053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wa/wac053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wa/wac053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wa/waz569.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wa/waz569.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz569.txt
 station = ('krnt', 0.0024886)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz569.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz569.txt
 
@@ -67103,17 +67103,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz569.txt
 centroid = (0.8103721, -1.6042141)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz001.txt
 description = Douglas County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz001.txt
 station = ('kolg', 0.0023468)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz001.txt
 
@@ -67121,17 +67121,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz001.txt
 centroid = (0.8119987, -1.5917507)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz002.txt
 description = Bayfield County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz002.txt
 station = ('kasx', 0.0034387)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz002.txt
 
@@ -67139,17 +67139,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz002.txt
 centroid = (0.8083458, -1.5826314)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz003.txt
 description = Ashland County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz003.txt
 station = ('kasx', 0.0050086)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz003.txt
 
@@ -67157,17 +67157,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz003.txt
 centroid = (0.8074295, -1.5750200)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz004.txt
 description = Iron County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz004.txt
 station = ('kiwd', 0.0049079)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz004.txt
 
@@ -67175,17 +67175,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz004.txt
 centroid = (0.8037747, -1.5623280)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz005.txt
 description = Vilas County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic125.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic125.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic125.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic125.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic125.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz005.txt
 station = ('karv', 0.0033729)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic125.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz005.txt
 
@@ -67193,17 +67193,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz005.txt
 centroid = (0.8004551, -1.6121187)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz006.txt
 description = Burnett County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz006.txt
 station = ('krzn', 0.0006993)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz006.txt
 
@@ -67211,17 +67211,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz006.txt
 centroid = (0.8010939, -1.6020587)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz007.txt
 description = Washburn County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic129.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic129.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic129.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic129.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic129.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz007.txt
 station = ('khyr', 0.0046189)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic129.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz007.txt
 
@@ -67229,17 +67229,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz007.txt
 centroid = (0.8007571, -1.5907751)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz008.txt
 description = Sawyer County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic113.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic113.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic113.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic113.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic113.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz008.txt
 station = ('khyr', 0.0044064)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic113.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz008.txt
 
@@ -67247,17 +67247,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz008.txt
 centroid = (0.7972734, -1.5771039)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz009.txt
 description = Price County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz009.txt
 station = ('kpbh', 0.0005818)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz009.txt
 
@@ -67265,17 +67265,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz009.txt
 centroid = (0.7977132, -1.5624484)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz010.txt
 description = Oneida County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz010.txt
 station = ('krhi', 0.0013453)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz010.txt
 
@@ -67283,17 +67283,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz010.txt
 centroid = (0.7970447, -1.5493358)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz011.txt
 description = Forest County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz011.txt
 station = ('kegv', 0.0076237)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz011.txt
 
@@ -67301,17 +67301,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz011.txt
 centroid = (0.8002055, -1.5428396)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz012.txt
 description = Florence County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz012.txt
 station = ('kimt', 0.0034682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz012.txt
 
@@ -67319,17 +67319,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz012.txt
 centroid = (0.7950167, -1.5377922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz013.txt
 description = Northern Marinette County, Marinette County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz013.txt
 station = ('kimt', 0.0046360)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz013.txt
 
@@ -67337,17 +67337,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz013.txt
 centroid = (0.7934511, -1.6134068)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz014.txt
 description = Polk County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz014.txt
 station = ('koeo', 0.0040494)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz014.txt
 
@@ -67355,17 +67355,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz014.txt
 centroid = (0.7927949, -1.6030570)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz015.txt
 description = Barron County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz015.txt
 station = ('krpd', 0.0009217)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz015.txt
 
@@ -67373,17 +67373,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz015.txt
 centroid = (0.7936902, -1.5905727)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz016.txt
 description = Rusk County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz016.txt
 station = ('krcx', 0.0016683)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz016.txt
 
@@ -67391,17 +67391,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz016.txt
 centroid = (0.7890895, -1.5795439)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz017.txt
 description = Taylor County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic119.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic119.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic119.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic119.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic119.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz017.txt
 station = ('kmdz', 0.0031052)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic119.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz017.txt
 
@@ -67409,17 +67409,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz017.txt
 centroid = (0.7912886, -1.5661642)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz018.txt
 description = Lincoln County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz018.txt
 station = ('ktkv', 0.0024525)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz018.txt
 
@@ -67427,17 +67427,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz018.txt
 centroid = (0.7899779, -1.5545979)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz019.txt
 description = Langlade County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz019.txt
 station = ('kaig', 0.0019919)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz019.txt
 
@@ -67445,17 +67445,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz019.txt
 centroid = (0.7854750, -1.5482816)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz020.txt
 description = Menominee County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic078.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic078.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic078.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic078.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic078.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz020.txt
 station = ('kezs', 0.0042126)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic078.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz020.txt
 
@@ -67463,17 +67463,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz020.txt
 centroid = (0.7888993, -1.5433196)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz021.txt
 description = Northern Oconto County, Oconto County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz021.txt
 station = ('kezs', 0.0073991)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz021.txt
 
@@ -67481,17 +67481,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz021.txt
 centroid = (0.7844121, -1.5239744)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz022.txt
 description = Door County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz022.txt
 station = ('ksue', 0.0020426)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz022.txt
 
@@ -67499,17 +67499,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz022.txt
 centroid = (0.7859916, -1.6136058)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz023.txt
 description = St. Croix County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz023.txt
 station = ('krnh', 0.0022551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz023.txt
 
@@ -67517,17 +67517,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz023.txt
 centroid = (0.7805043, -1.6130752)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz024.txt
 description = Pierce County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz024.txt
 station = ('krgk', 0.0023917)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz024.txt
 
@@ -67535,17 +67535,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz024.txt
 centroid = (0.7844662, -1.6038948)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz025.txt
 description = Dunn County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz025.txt
 station = ('klum', 0.0010128)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz025.txt
 
@@ -67553,17 +67553,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz025.txt
 centroid = (0.7781184, -1.6057308)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz026.txt
 description = Pepin County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz026.txt
 station = ('klum', 0.0056479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz026.txt
 
@@ -67571,17 +67571,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz026.txt
 centroid = (0.7866094, -1.5931348)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz027.txt
 description = Chippewa County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz027.txt
 station = ('keau', 0.0043394)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz027.txt
 
@@ -67589,17 +67589,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz027.txt
 centroid = (0.7806299, -1.5932413)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz028.txt
 description = Eau Claire County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz028.txt
 station = ('keau', 0.0034543)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz028.txt
 
@@ -67607,17 +67607,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz028.txt
 centroid = (0.7807678, -1.5814795)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz029.txt
 description = Clark County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz029.txt
 station = ('kmdz', 0.0074471)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz029.txt
 
@@ -67625,17 +67625,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz029.txt
 centroid = (0.7836232, -1.5665901)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz030.txt
 description = Marathon County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz030.txt
 station = ('kauw', 0.0018624)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz030.txt
 
@@ -67643,17 +67643,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz030.txt
 centroid = (0.7817190, -1.5492520)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz031.txt
 description = Shawano County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic115.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic115.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic115.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic115.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic115.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz031.txt
 station = ('kcli', 0.0030890)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic115.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz031.txt
 
@@ -67661,17 +67661,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz031.txt
 centroid = (0.7745754, -1.6014181)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz032.txt
 description = Buffalo County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz032.txt
 station = ('kona', 0.0052207)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz032.txt
 
@@ -67679,17 +67679,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz032.txt
 centroid = (0.7732507, -1.5945066)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz033.txt
 description = Trempealeau County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic121.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic121.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic121.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic121.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic121.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz033.txt
 station = ('kona', 0.0057529)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic121.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz033.txt
 
@@ -67697,17 +67697,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz033.txt
 centroid = (0.7735142, -1.5848497)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz034.txt
 description = Jackson County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz034.txt
 station = ('kbck', 0.0013479)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz034.txt
 
@@ -67715,17 +67715,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz034.txt
 centroid = (0.7758914, -1.5715224)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz035.txt
 description = Wood County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz035.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz035.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic141.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic141.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz035.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz035.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz035.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz035.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz035.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic141.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic141.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic141.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz035.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz035.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz035.txt
 station = ('kisw', 0.0030225)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic141.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz035.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz035.txt
 
@@ -67733,17 +67733,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz035.txt
 centroid = (0.7762526, -1.5620959)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz036.txt
 description = Portage County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz036.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz036.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz036.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz036.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz036.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz036.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz036.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz036.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz036.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz036.txt
 station = ('kste', 0.0012564)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz036.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz036.txt
 
@@ -67751,17 +67751,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz036.txt
 centroid = (0.7761549, -1.5527287)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz037.txt
 description = Waupaca County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz037.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz037.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic135.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic135.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz037.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz037.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz037.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz037.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz037.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic135.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic135.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic135.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz037.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz037.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz037.txt
 station = ('kpcz', 0.0024690)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic135.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz037.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz037.txt
 
@@ -67769,17 +67769,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz037.txt
 centroid = (0.7752072, -1.5440038)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz038.txt
 description = Outagamie County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz038.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz038.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz038.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz038.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz038.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz038.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz038.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz038.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz038.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz038.txt
 station = ('katw', 0.0029702)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz038.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz038.txt
 
@@ -67787,17 +67787,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz038.txt
 centroid = (0.7758634, -1.5359456)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz039.txt
 description = Brown County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz039.txt
 station = ('kgrb', 0.0017014)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz039.txt
 
@@ -67805,17 +67805,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz039.txt
 centroid = (0.7769525, -1.5291772)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz040.txt
 description = Kewaunee County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz040.txt
 station = ('ksue', 0.0063280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz040.txt
 
@@ -67823,17 +67823,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz040.txt
 centroid = (0.7663130, -1.5902602)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz041.txt
 description = La Crosse County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz041.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz041.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz041.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz041.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz041.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz041.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz041.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz041.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz041.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz041.txt
 station = ('klse', 0.0017429)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz041.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz041.txt
 
@@ -67841,17 +67841,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz041.txt
 centroid = (0.7669972, -1.5815807)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz042.txt
 description = Monroe County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz042.txt
 station = ('kcmy', 0.0015223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz042.txt
 
@@ -67859,17 +67859,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz042.txt
 centroid = (0.7666271, -1.5727860)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz043.txt
 description = Juneau County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz043.txt
 station = ('k82c', 0.0015269)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz043.txt
 
@@ -67877,17 +67877,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz043.txt
 centroid = (0.7674143, -1.5667925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz044.txt
 description = Adams County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz044.txt
 station = ('k82c', 0.0051508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz044.txt
 
@@ -67895,17 +67895,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz044.txt
 centroid = (0.7699188, -1.5575824)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz045.txt
 description = Waushara County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz045.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz045.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic137.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic137.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz045.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz045.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz045.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz045.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz045.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic137.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic137.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic137.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz045.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz045.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz045.txt
 station = ('ky50', 0.0014704)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic137.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz045.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz045.txt
 
@@ -67913,17 +67913,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz045.txt
 centroid = (0.7647963, -1.5603034)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz046.txt
 description = Marquette County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz046.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz046.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz046.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz046.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz046.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz046.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz046.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz046.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz046.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz046.txt
 station = ('ky50', 0.0040486)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz046.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz046.txt
 
@@ -67931,17 +67931,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz046.txt
 centroid = (0.7644594, -1.5541284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz047.txt
 description = Green Lake County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz047.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz047.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz047.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz047.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz047.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz047.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz047.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz047.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz047.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz047.txt
 station = ('ky50', 0.0053239)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz047.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz047.txt
 
@@ -67949,17 +67949,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz047.txt
 centroid = (0.7691474, -1.5471401)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz048.txt
 description = Winnebago County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz048.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz048.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic139.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic139.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz048.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz048.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz048.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz048.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz048.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic139.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic139.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic139.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz048.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz048.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz048.txt
 station = ('kosh', 0.0021432)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic139.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz048.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz048.txt
 
@@ -67967,17 +67967,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz048.txt
 centroid = (0.7693708, -1.5396946)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz049.txt
 description = Calumet County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz049.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz049.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz049.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz049.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz049.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz049.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz049.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz049.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz049.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz049.txt
 station = ('katw', 0.0047550)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz049.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz049.txt
 
@@ -67985,17 +67985,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz049.txt
 centroid = (0.7700358, -1.5325666)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz050.txt
 description = Manitowoc County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz050.txt
 station = ('kmtw', 0.0015994)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz050.txt
 
@@ -68003,17 +68003,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz050.txt
 centroid = (0.7636444, -1.5444104)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz051.txt
 description = Fond Du Lac, Fond du Lac County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz051.txt
 station = ('kfld', 0.0002362)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz051.txt
 
@@ -68021,17 +68021,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz051.txt
 centroid = (0.7630789, -1.5349368)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz052.txt
 description = Sheboygan County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic117.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic117.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic117.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic117.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic117.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz052.txt
 station = ('ksbm', 0.0016194)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic117.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz052.txt
 
@@ -68039,17 +68039,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz052.txt
 centroid = (0.7608571, -1.5853594)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz053.txt
 description = Vernon County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic123.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic123.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic123.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic123.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic123.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz053.txt
 station = ('ky51', 0.0008542)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic123.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz053.txt
 
@@ -68057,17 +68057,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz053.txt
 centroid = (0.7546716, -1.5870453)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz054.txt
 description = Crawford County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz054.txt
 station = ('kovs', 0.0035172)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz054.txt
 
@@ -68075,17 +68075,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz054.txt
 centroid = (0.7570470, -1.5782925)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz055.txt
 description = Richland County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz055.txt
 station = ('klnr', 0.0041800)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz055.txt
 
@@ -68093,17 +68093,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz055.txt
 centroid = (0.7579406, -1.5698957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz056.txt
 description = Sauk County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic111.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic111.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic111.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic111.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic111.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz056.txt
 station = ('kc35', 0.0017849)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic111.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz056.txt
 
@@ -68111,17 +68111,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz056.txt
 centroid = (0.7586335, -1.5591689)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz057.txt
 description = Columbia County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz057.txt
 station = ('kmsn', 0.0058185)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz057.txt
 
@@ -68129,17 +68129,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz057.txt
 centroid = (0.7577591, -1.5482379)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz058.txt
 description = Dodge County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz058.txt
 station = ('kunu', 0.0001868)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz058.txt
 
@@ -68147,17 +68147,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz058.txt
 centroid = (0.7569214, -1.5399180)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz059.txt
 description = Washington County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic131.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic131.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic131.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic131.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic131.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz059.txt
 station = ('ketb', 0.0016063)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic131.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz059.txt
 
@@ -68165,17 +68165,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz059.txt
 centroid = (0.7571902, -1.5350433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz060.txt
 description = Ozaukee County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz060.txt
 station = ('ketb', 0.0023371)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz060.txt
 
@@ -68183,17 +68183,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz060.txt
 centroid = (0.7481790, -1.5831218)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz061.txt
 description = Grant County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz061.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz061.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz061.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz061.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz061.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz061.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz061.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz061.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz061.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz061.txt
 station = ('kpvb', 0.0045728)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz061.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz061.txt
 
@@ -68201,17 +68201,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz061.txt
 centroid = (0.7505003, -1.5731595)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz062.txt
 description = Iowa County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz062.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz062.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz062.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz062.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz062.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz062.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz062.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz062.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz062.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz062.txt
 station = ('kmrj', 0.0023592)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz062.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz062.txt
 
@@ -68219,17 +68219,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz062.txt
 centroid = (0.7516679, -1.5606437)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz063.txt
 description = Dane County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz063.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz063.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz063.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz063.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz063.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz063.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz063.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz063.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz063.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz063.txt
 station = ('kmsn', 0.0014428)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz063.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz063.txt
 
@@ -68237,17 +68237,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz063.txt
 centroid = (0.7508564, -1.5494318)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz064.txt
 description = Jefferson County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz064.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz064.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz064.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz064.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz064.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz064.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz064.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz064.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz064.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz064.txt
 station = ('kryv', 0.0026538)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz064.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz064.txt
 
@@ -68255,17 +68255,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz064.txt
 centroid = (0.7508075, -1.5412043)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz065.txt
 description = Waukesha County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz065.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz065.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic133.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic133.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz065.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz065.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz065.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz065.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz065.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic133.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic133.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic133.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz065.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz065.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz065.txt
 station = ('kues', 0.0009509)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic133.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz065.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz065.txt
 
@@ -68273,17 +68273,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz065.txt
 centroid = (0.7506155, -1.5353085)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz066.txt
 description = Milwaukee County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz066.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz066.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz066.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz066.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz066.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz066.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz066.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz066.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz066.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz066.txt
 station = ('kmke', 0.0013109)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz066.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz066.txt
 
@@ -68291,17 +68291,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz066.txt
 centroid = (0.7445662, -1.5730949)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz067.txt
 description = Lafayette County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz067.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz067.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz067.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz067.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz067.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz067.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz067.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz067.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz067.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz067.txt
 station = ('kmrj', 0.0041280)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz067.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz067.txt
 
@@ -68309,17 +68309,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz067.txt
 centroid = (0.7449065, -1.5638534)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz068.txt
 description = Green County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz068.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz068.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz068.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz068.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz068.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz068.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz068.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz068.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz068.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz068.txt
 station = ('keft', 0.0011438)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz068.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz068.txt
 
@@ -68327,17 +68327,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz068.txt
 centroid = (0.7447529, -1.5545927)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz069.txt
 description = Rock County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz069.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz069.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz069.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz069.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz069.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz069.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz069.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz069.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz069.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz069.txt
 station = ('kjvl', 0.0010711)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz069.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz069.txt
 
@@ -68345,17 +68345,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz069.txt
 centroid = (0.7447058, -1.5453477)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz070.txt
 description = Walworth County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz070.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz070.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic127.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic127.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz070.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz070.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz070.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz070.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz070.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic127.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic127.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic127.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz070.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz070.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz070.txt
 station = ('k57c', 0.0031235)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic127.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz070.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz070.txt
 
@@ -68363,17 +68363,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz070.txt
 centroid = (0.7460881, -1.5368514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz071.txt
 description = Racine County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz071.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz071.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz071.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz071.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz071.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz071.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz071.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz071.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz071.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz071.txt
 station = ('kenw', 0.0030144)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz071.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz071.txt
 
@@ -68381,17 +68381,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz071.txt
 centroid = (0.7431036, -1.5366193)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz072.txt
 description = Kenosha County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz072.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz072.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz072.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz072.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz072.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz072.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz072.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz072.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz072.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz072.txt
 station = ('kenw', 0.0014519)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz072.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz072.txt
 
@@ -68399,17 +68399,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz072.txt
 centroid = (0.7886689, -1.5349734)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz073.txt
 description = Southern Marinette County, Marinette County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz073.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz073.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz073.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz073.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz073.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz073.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz073.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz073.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz073.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz073.txt
 station = ('kmnm', 0.0039799)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz073.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz073.txt
 
@@ -68417,17 +68417,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz073.txt
 centroid = (0.7833544, -1.5383157)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wi/wiz074.txt
 description = Southern Oconto County, Oconto County, WI, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wiz074.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wiz074.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wi/wic083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wi/wic083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wi/wiz074.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wi/wiz074.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wiz074.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wiz074.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wiz074.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wi/wic083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wi/wic083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wi/wic083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wi/wiz074.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wi/wiz074.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz074.txt
 station = ('kocq', 0.0028150)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz074.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz074.txt
 
@@ -68435,17 +68435,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz074.txt
 centroid = (0.7072301, -1.4062798)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz001.txt
 description = Hancock County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz001.txt
 station = ('k2g2', 0.0032855)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz001.txt
 
@@ -68453,17 +68453,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz001.txt
 centroid = (0.7029017, -1.4063252)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz002.txt
 description = Brooke County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz002.txt
 station = ('khlg', 0.0021031)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz002.txt
 
@@ -68471,17 +68471,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz002.txt
 centroid = (0.6998229, -1.4070652)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz003.txt
 description = Ohio County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc069.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc069.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc069.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc069.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc069.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz003.txt
 station = ('khlg', 0.0012864)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc069.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz003.txt
 
@@ -68489,17 +68489,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz003.txt
 centroid = (0.6956987, -1.4078419)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz004.txt
 description = Marshall County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc051.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc051.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc051.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc051.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc051.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz004.txt
 station = ('khlg', 0.0053449)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc051.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz004.txt
 
@@ -68507,17 +68507,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz004.txt
 centroid = (0.6657750, -1.4386225)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz005.txt
 description = Wayne County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc099.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc099.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc099.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc099.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc099.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz005.txt
 station = ('khts', 0.0042025)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc099.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz005.txt
 
@@ -68525,17 +68525,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz005.txt
 centroid = (0.6705607, -1.4353884)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz006.txt
 description = Cabell County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz006.txt
 station = ('khts', 0.0043200)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz006.txt
 
@@ -68543,17 +68543,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz006.txt
 centroid = (0.6766607, -1.4316325)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz007.txt
 description = Mason County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc053.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc053.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc053.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc053.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc053.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz007.txt
 station = ('kuni', 0.0081917)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc053.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz007.txt
 
@@ -68561,17 +68561,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz007.txt
 centroid = (0.6777881, -1.4254942)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz008.txt
 description = Jackson County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz008.txt
 station = ('kcrw', 0.0082270)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz008.txt
 
@@ -68579,17 +68579,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz008.txt
 centroid = (0.6843628, -1.4227051)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz009.txt
 description = Wood County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc107.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc107.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc107.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc107.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc107.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz009.txt
 station = ('kpkb', 0.0023071)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc107.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz009.txt
 
@@ -68597,17 +68597,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz009.txt
 centroid = (0.6871518, -1.4165197)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz010.txt
 description = Pleasants County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc073.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc073.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc073.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc073.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc073.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz010.txt
 station = ('kpkb', 0.0039604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc073.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz010.txt
 
@@ -68615,17 +68615,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz010.txt
 centroid = (0.6887994, -1.4117078)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz011.txt
 description = Tyler County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc095.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc095.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc095.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc095.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc095.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz011.txt
 station = ('kckb', 0.0094649)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc095.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz011.txt
 
@@ -68633,17 +68633,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz011.txt
 centroid = (0.6912429, -1.4074178)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz012.txt
 description = Wetzel County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc103.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc103.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc103.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc103.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc103.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz012.txt
 station = ('kckb', 0.0077976)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc103.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz012.txt
 
@@ -68651,17 +68651,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz012.txt
 centroid = (0.6662847, -1.4324004)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz013.txt
 description = Lincoln County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz013.txt
 station = ('k6l4', 0.0059697)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz013.txt
 
@@ -68669,17 +68669,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz013.txt
 centroid = (0.6721019, -1.4295817)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz014.txt
 description = Putnam County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc079.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc079.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc079.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc079.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc079.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz014.txt
 station = ('kcrw', 0.0048971)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc079.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz014.txt
 
@@ -68687,17 +68687,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz014.txt
 centroid = (0.6690981, -1.4229338)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz015.txt
 description = Kanawha County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz015.txt
 station = ('kcrw', 0.0011161)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz015.txt
 
@@ -68705,17 +68705,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz015.txt
 centroid = (0.6756868, -1.4197957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz016.txt
 description = Roane County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc087.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc087.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc087.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc087.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc087.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz016.txt
 station = ('kcrw', 0.0069682)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc087.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz016.txt
 
@@ -68723,17 +68723,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz016.txt
 centroid = (0.6810694, -1.4203245)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz017.txt
 description = Wirt County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc105.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc105.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc105.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc105.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc105.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz017.txt
 station = ('kpkb', 0.0055121)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc105.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz017.txt
 
@@ -68741,17 +68741,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz017.txt
 centroid = (0.6779644, -1.4157675)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz018.txt
 description = Calhoun County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz018.txt
 station = ('k48i', 0.0069100)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz018.txt
 
@@ -68759,17 +68759,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz018.txt
 centroid = (0.6837903, -1.4148145)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz019.txt
 description = Ritchie County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc085.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc085.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc085.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc085.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc085.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz019.txt
 station = ('kpkb', 0.0058898)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc085.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz019.txt
 
@@ -68777,17 +68777,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz019.txt
 centroid = (0.6853768, -1.4086029)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz020.txt
 description = Doddridge County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz020.txt
 station = ('kckb', 0.0066457)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz020.txt
 
@@ -68795,17 +68795,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz020.txt
 centroid = (0.6895796, -1.4005115)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz021.txt
 description = Marion County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc049.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc049.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc049.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc049.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc049.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz021.txt
 station = ('kckb', 0.0036829)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc049.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz021.txt
 
@@ -68813,17 +68813,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz021.txt
 centroid = (0.6584499, -1.4335192)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz024.txt
 description = Mingo County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc059.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc059.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc059.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc059.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc059.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz024.txt
 station = ('k6l4', 0.0037672)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc059.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz024.txt
 
@@ -68831,17 +68831,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz024.txt
 centroid = (0.6602860, -1.4300408)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz025.txt
 description = Logan County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz025.txt
 station = ('k6l4', 0.0004983)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz025.txt
 
@@ -68849,17 +68849,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz025.txt
 centroid = (0.6636283, -1.4261312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz026.txt
 description = Boone County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz026.txt
 station = ('k6l4', 0.0040580)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz026.txt
 
@@ -68867,17 +68867,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz026.txt
 centroid = (0.6712990, -1.4150257)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz027.txt
 description = Clay County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz027.txt
 station = ('k48i', 0.0069784)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz027.txt
 
@@ -68885,17 +68885,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz027.txt
 centroid = (0.6754389, -1.4088176)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz028.txt
 description = Braxton County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz028.txt
 station = ('k48i', 0.0009483)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz028.txt
 
@@ -68903,17 +68903,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz028.txt
 centroid = (0.6793537, -1.4112226)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz029.txt
 description = Gilmer County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz029.txt
 station = ('k48i', 0.0049939)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz029.txt
 
@@ -68921,17 +68921,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz029.txt
 centroid = (0.6806051, -1.4050284)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz030.txt
 description = Lewis County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz030.txt
 station = ('kw22', 0.0031957)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz030.txt
 
@@ -68939,17 +68939,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz030.txt
 centroid = (0.6856264, -1.4028922)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz031.txt
 description = Harrison County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz031.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz031.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz031.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz031.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz031.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz031.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz031.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz031.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz031.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz031.txt
 station = ('kckb', 0.0022223)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz031.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz031.txt
 
@@ -68957,17 +68957,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz031.txt
 centroid = (0.6865427, -1.3970680)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz032.txt
 description = Taylor County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz032.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz032.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc091.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc091.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz032.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz032.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz032.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz032.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz032.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc091.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc091.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc091.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz032.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz032.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz032.txt
 station = ('kckb', 0.0023873)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc091.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz032.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz032.txt
 
@@ -68975,17 +68975,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz032.txt
 centroid = (0.6523779, -1.4251242)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz033.txt
 description = McDowell County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz033.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz033.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc047.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc047.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz033.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz033.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz033.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz033.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz033.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc047.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc047.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc047.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz033.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz033.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz033.txt
 station = ('ki16', 0.0040857)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc047.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz033.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz033.txt
 
@@ -68993,17 +68993,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz033.txt
 centroid = (0.6564114, -1.4233003)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz034.txt
 description = Wyoming County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz034.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz034.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc109.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc109.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz034.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz034.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz034.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz034.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz034.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc109.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc109.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc109.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz034.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz034.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz034.txt
 station = ('ki16', 0.0002141)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc109.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz034.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz034.txt
 
@@ -69011,17 +69011,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz034.txt
 centroid = (0.6788947, -1.4003370)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz039.txt
 description = Upshur County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz039.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz039.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc097.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc097.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz039.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz039.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz039.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz039.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz039.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc097.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc097.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc097.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz039.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz039.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz039.txt
 station = ('kw22', 0.0018400)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc097.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz039.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz039.txt
 
@@ -69029,17 +69029,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz039.txt
 centroid = (0.6829980, -1.3963158)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz040.txt
 description = Barbour County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz040.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz040.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz040.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz040.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz040.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz040.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz040.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz040.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz040.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz040.txt
 station = ('kckb', 0.0041053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz040.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz040.txt
 
@@ -69047,17 +69047,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz040.txt
 centroid = (0.6528491, -1.4156610)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz042.txt
 description = Mercer County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz042.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz042.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc055.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc055.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz042.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz042.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz042.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz042.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz042.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc055.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc055.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc055.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz042.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz042.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz042.txt
 station = ('kblf', 0.0022139)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc055.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz042.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz042.txt
 
@@ -69065,17 +69065,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz042.txt
 centroid = (0.6572194, -1.4112488)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz043.txt
 description = Summers County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz043.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz043.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc089.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc089.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz043.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz043.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz043.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz043.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz043.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc089.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc089.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc089.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz043.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz043.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz043.txt
 station = ('kbkw', 0.0043607)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc089.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz043.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz043.txt
 
@@ -69083,17 +69083,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz043.txt
 centroid = (0.6555526, -1.4058714)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz044.txt
 description = Monroe County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz044.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz044.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc063.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc063.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz044.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz044.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz044.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz044.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz044.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc063.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc063.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc063.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz044.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz044.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz044.txt
 station = ('klwb', 0.0057350)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc063.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz044.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz044.txt
 
@@ -69101,17 +69101,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz044.txt
 centroid = (0.6862128, -1.3720766)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz050.txt
 description = Hampshire County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz050.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz050.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz050.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz050.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz050.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz050.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz050.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz050.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz050.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz050.txt
 station = ('kcbe', 0.0055666)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz050.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz050.txt
 
@@ -69119,17 +69119,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz050.txt
 centroid = (0.6904592, -1.3658563)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz051.txt
 description = Morgan County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz051.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz051.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc065.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc065.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz051.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz051.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz051.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz051.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz051.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc065.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc065.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc065.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz051.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz051.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz051.txt
 station = ('kmrb', 0.0046377)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc065.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz051.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz051.txt
 
@@ -69137,17 +69137,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz051.txt
 centroid = (0.6887785, -1.3618368)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz052.txt
 description = Berkeley County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz052.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz052.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc003.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc003.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz052.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz052.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz052.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz052.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz052.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc003.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc003.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc003.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz052.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz052.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz052.txt
 station = ('kmrb', 0.0012673)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc003.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz052.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz052.txt
 
@@ -69155,17 +69155,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz052.txt
 centroid = (0.6860470, -1.3589622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz053.txt
 description = Jefferson County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz053.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz053.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz053.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz053.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz053.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz053.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz053.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz053.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz053.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz053.txt
 station = ('kmrb', 0.0022906)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz053.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz053.txt
 
@@ -69173,17 +69173,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz053.txt
 centroid = (0.6808093, -1.3763300)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz055.txt
 description = Hardy County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz055.txt
 station = ('kw99', 0.0037599)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz055.txt
 
@@ -69191,17 +69191,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz055.txt
 centroid = (0.6845967, -1.3837232)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz501.txt
 description = Western Grant County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz501.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz501.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz501.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz501.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz501.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz501.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz501.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz501.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz501.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz501.txt
 station = ('kw99', 0.0046630)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz501.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz501.txt
 
@@ -69209,17 +69209,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz501.txt
 centroid = (0.6816418, -1.3815957)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz502.txt
 description = Eastern Grant County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz502.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz502.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz502.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz502.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz502.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz502.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz502.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz502.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz502.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz502.txt
 station = ('kw99', 0.0013039)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz502.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz502.txt
 
@@ -69227,17 +69227,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz502.txt
 centroid = (0.6874293, -1.3808312)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz503.txt
 description = Western Mineral County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz503.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz503.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz503.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz503.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz503.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz503.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz503.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz503.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz503.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz503.txt
 station = ('k2g4', 0.0044993)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz503.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz503.txt
 
@@ -69245,17 +69245,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz503.txt
 centroid = (0.6880769, -1.3768414)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz504.txt
 description = Eastern Mineral County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz504.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz504.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc057.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc057.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz504.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz504.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz504.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz504.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz504.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc057.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc057.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc057.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz504.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz504.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz504.txt
 station = ('kcbe', 0.0037485)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc057.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz504.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz504.txt
 
@@ -69263,17 +69263,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz504.txt
 centroid = (0.6763744, -1.3869364)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz505.txt
 description = Western Pendleton County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz505.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz505.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz505.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz505.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz505.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz505.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz505.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz505.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz505.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz505.txt
 station = ('kekn', 0.0056980)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz505.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz505.txt
 
@@ -69281,17 +69281,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz505.txt
 centroid = (0.6744546, -1.3839047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz506.txt
 description = Eastern Pendleton County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz506.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz506.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc071.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc071.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz506.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz506.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz506.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz506.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz506.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc071.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc071.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc071.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz506.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz506.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz506.txt
 station = ('kw99', 0.0063127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc071.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz506.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz506.txt
 
@@ -69299,17 +69299,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz506.txt
 centroid = (0.6744546, -1.3839047)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz507.txt
 description = Eastern Greenbrier County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz507.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz507.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz507.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz507.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz507.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz507.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz507.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz507.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz507.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz507.txt
 station = ('kw99', 0.0063127)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz507.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz507.txt
 
@@ -69317,17 +69317,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz507.txt
 centroid = (0.6622983, -1.4041680)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz508.txt
 description = Western Greenbrier County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz508.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz508.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz508.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz508.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz508.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz508.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz508.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz508.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz508.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz508.txt
 station = ('klwb', 0.0015785)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz508.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz508.txt
 
@@ -69335,17 +69335,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz508.txt
 centroid = (0.6916792, -1.3970750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz509.txt
 description = Monongalia County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz509.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz509.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz509.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz509.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz509.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz509.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz509.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz509.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz509.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz509.txt
 station = ('kmgw', 0.0017785)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz509.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz509.txt
 
@@ -69353,17 +69353,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz509.txt
 centroid = (0.6916792, -1.3970750)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz510.txt
 description = Ridges of Eastern Monongalia and Northwestern Preston, Monongalia County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz510.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz510.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc061.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc061.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz510.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz510.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz510.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz510.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz510.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc061.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc061.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc061.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz510.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz510.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz510.txt
 station = ('kmgw', 0.0017785)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc061.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz510.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz510.txt
 
@@ -69371,17 +69371,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz510.txt
 centroid = (0.6888692, -1.3904707)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz511.txt
 description = Preston County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz511.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz511.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz511.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz511.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz511.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz511.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz511.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz511.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz511.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz511.txt
 station = ('kmgw', 0.0045971)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz511.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz511.txt
 
@@ -69389,17 +69389,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz511.txt
 centroid = (0.6888692, -1.3904707)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz512.txt
 description = Eastern Preston County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz512.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz512.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc077.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc077.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz512.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz512.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz512.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz512.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz512.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc077.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc077.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc077.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz512.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz512.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz512.txt
 station = ('kmgw', 0.0045971)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc077.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz512.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz512.txt
 
@@ -69407,17 +69407,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz512.txt
 centroid = (0.6826611, -1.3886712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz513.txt
 description = Western Tucker County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz513.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz513.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz513.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz513.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz513.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz513.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz513.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz513.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz513.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz513.txt
 station = ('kekn', 0.0055763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz513.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz513.txt
 
@@ -69425,17 +69425,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz513.txt
 centroid = (0.6826611, -1.3886712)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz514.txt
 description = Eastern Tucker County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz514.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz514.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc093.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc093.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz514.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz514.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz514.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz514.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz514.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc093.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc093.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc093.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz514.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz514.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz514.txt
 station = ('kekn', 0.0055763)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc093.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz514.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz514.txt
 
@@ -69443,17 +69443,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz514.txt
 centroid = (0.6600155, -1.4201116)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz515.txt
 description = Northwest Raleigh County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz515.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz515.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz515.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz515.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz515.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz515.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz515.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz515.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz515.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz515.txt
 station = ('kbkw', 0.0034551)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz515.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz515.txt
 
@@ -69461,17 +69461,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz515.txt
 centroid = (0.6582963, -1.4155825)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz516.txt
 description = Southeast Raleigh County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz516.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz516.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc081.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc081.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz516.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz516.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz516.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz516.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz516.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc081.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc081.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc081.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz516.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz516.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz516.txt
 station = ('kbkw', 0.0014445)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc081.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz516.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz516.txt
 
@@ -69479,17 +69479,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz516.txt
 centroid = (0.6644556, -1.4163731)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz517.txt
 description = Northwest Fayette County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz517.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz517.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz517.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz517.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz517.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz517.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz517.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz517.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz517.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz517.txt
 station = ('kbkw', 0.0047464)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz517.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz517.txt
 
@@ -69497,17 +69497,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz517.txt
 centroid = (0.6621099, -1.4123833)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz518.txt
 description = Southeast Fayette County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz518.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz518.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz518.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz518.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz518.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz518.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz518.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz518.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz518.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz518.txt
 station = ('kbkw', 0.0035663)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz518.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz518.txt
 
@@ -69515,17 +69515,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz518.txt
 centroid = (0.6688521, -1.4110533)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz519.txt
 description = Northwest Nicholas County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz519.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz519.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz519.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz519.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz519.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz519.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz519.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz519.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz519.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz519.txt
 station = ('k48i', 0.0069013)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz519.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz519.txt
 
@@ -69533,17 +69533,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz519.txt
 centroid = (0.6666058, -1.4075295)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz520.txt
 description = Southeast Nicholas County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz520.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz520.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc067.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc067.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz520.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz520.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz520.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz520.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz520.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc067.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc067.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc067.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz520.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz520.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz520.txt
 station = ('klwb', 0.0066310)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc067.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz520.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz520.txt
 
@@ -69551,17 +69551,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz520.txt
 centroid = (0.6726464, -1.4044525)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz521.txt
 description = Northwest Webster County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz521.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz521.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz521.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz521.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz521.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz521.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz521.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz521.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz521.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz521.txt
 station = ('k48i', 0.0035760)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz521.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz521.txt
 
@@ -69569,17 +69569,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz521.txt
 centroid = (0.6705293, -1.4022307)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz522.txt
 description = Southeast Webster County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz522.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz522.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc101.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc101.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz522.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz522.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz522.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz522.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz522.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc101.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc101.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc101.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz522.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz522.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz522.txt
 station = ('k48i', 0.0063109)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc101.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz522.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz522.txt
 
@@ -69587,17 +69587,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz522.txt
 centroid = (0.6707126, -1.3959091)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz523.txt
 description = Northwest Pocahontas County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz523.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz523.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz523.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz523.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz523.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz523.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz523.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz523.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz523.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz523.txt
 station = ('kekn', 0.0081243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz523.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz523.txt
 
@@ -69605,17 +69605,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz523.txt
 centroid = (0.6671364, -1.3969406)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz524.txt
 description = Southeast Pocahontas County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz524.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz524.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc075.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc075.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz524.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz524.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz524.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz524.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz524.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc075.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc075.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc075.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz524.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz524.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz524.txt
 station = ('khsp', 0.0055545)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc075.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz524.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz524.txt
 
@@ -69623,17 +69623,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz524.txt
 centroid = (0.6780517, -1.3956037)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz525.txt
 description = Northwest Randolph County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz525.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz525.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz525.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz525.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz525.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz525.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz525.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz525.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz525.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz525.txt
 station = ('kekn', 0.0016351)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz525.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz525.txt
 
@@ -69641,17 +69641,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz525.txt
 centroid = (0.6759625, -1.3931899)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wv/wvz526.txt
 description = Southeast Randolph County, WV, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvz526.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvz526.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wv/wvc083.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wv/wvc083.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wv/wvz526.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wv/wvz526.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvz526.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvz526.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvz526.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wv/wvc083.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wv/wvc083.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wv/wvc083.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wv/wvz526.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wv/wvz526.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz526.txt
 station = ('kekn', 0.0027031)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc083.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz526.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz526.txt
 
@@ -69659,17 +69659,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz526.txt
 centroid = (0.7783750, -1.9294074)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz001.txt
 description = Yellowstone National Park, Gallatin County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz001.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz001.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz001.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz001.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz001.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz001.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz001.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz001.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz001.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz001.txt
 station = ('kp60', 0.0018199)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz001.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz001.txt
 
@@ -69677,17 +69677,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz001.txt
 centroid = (0.7717357, -1.9120448)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz002.txt
 description = Absaroka Mountains, Park County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz002.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz002.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz002.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz002.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz002.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz002.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz002.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz002.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz002.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz002.txt
 station = ('kcod', 0.0084822)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz002.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz002.txt
 
@@ -69695,17 +69695,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz002.txt
 centroid = (0.7759629, -1.9032170)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz003.txt
 description = Cody Foothills, Park County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz003.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz003.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz003.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz003.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz003.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz003.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz003.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz003.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz003.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz003.txt
 station = ('kcod', 0.0010654)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz003.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz003.txt
 
@@ -69713,17 +69713,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz003.txt
 centroid = (0.7774517, -1.8902055)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz004.txt
 description = North Big Horn Basin, Park County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz004.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz004.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc029.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc029.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz004.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz004.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz004.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz004.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz004.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc029.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc029.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc029.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz004.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz004.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz004.txt
 station = ('kgey', 0.0027496)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz004.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz004.txt
 
@@ -69731,17 +69731,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz004.txt
 centroid = (0.7640598, -1.8898059)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz005.txt
 description = Southwest Big Horn Basin, Hot Springs County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz005.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz005.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc017.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc017.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz005.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz005.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz005.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz005.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz005.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc017.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc017.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc017.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz005.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz005.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz005.txt
 station = ('khsg', 0.0017962)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc017.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz005.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz005.txt
 
@@ -69749,17 +69749,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz005.txt
 centroid = (0.7669378, -1.8818088)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz006.txt
 description = Southeast Big Horn Basin, Washakie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz006.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz006.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz006.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz006.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz006.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz006.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz006.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz006.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz006.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz006.txt
 station = ('kwrl', 0.0016915)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz006.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz006.txt
 
@@ -69767,17 +69767,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz006.txt
 centroid = (0.7604923, -1.8890327)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz007.txt
 description = Owl Creek and Bridger Mountains, Natrona County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz007.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz007.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz007.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz007.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz007.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz007.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz007.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz007.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz007.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz007.txt
 station = ('khsg', 0.0031478)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz007.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz007.txt
 
@@ -69785,17 +69785,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz007.txt
 centroid = (0.7723396, -1.8756739)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz008.txt
 description = Bighorn Mountains West, Washakie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz008.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz008.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz008.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz008.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz008.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz008.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz008.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz008.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz008.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz008.txt
 station = ('kwrl', 0.0078243)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz008.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz008.txt
 
@@ -69803,17 +69803,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz008.txt
 centroid = (0.7663723, -1.8679613)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz009.txt
 description = Bighorn Mountains Southeast, Washakie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz009.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz009.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc043.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc043.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz009.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz009.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz009.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz009.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz009.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc043.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc043.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc043.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz009.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz009.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz009.txt
 station = ('kbyg', 0.0091276)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz009.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz009.txt
 
@@ -69821,17 +69821,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz009.txt
 centroid = (0.7743677, -1.8575522)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz010.txt
 description = Northeast Johnson County, Johnson County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz010.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz010.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz010.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz010.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz010.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz010.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz010.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz010.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz010.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz010.txt
 station = ('kbyg', 0.0035874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz010.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz010.txt
 
@@ -69839,17 +69839,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz010.txt
 centroid = (0.7648138, -1.8576726)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz011.txt
 description = Southeast Johnson County, Johnson County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz011.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz011.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc019.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc019.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz011.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz011.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz011.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz011.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz011.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc019.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc019.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc019.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz011.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz011.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz011.txt
 station = ('kbyg', 0.0104291)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc019.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz011.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz011.txt
 
@@ -69857,17 +69857,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz011.txt
 centroid = (0.7625047, -1.9286848)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz012.txt
 description = Teton and Gros Ventre Mountains, Teton County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz012.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz012.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz012.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz012.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz012.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz012.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz012.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz012.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz012.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz012.txt
 station = ('kjac', 0.0032642)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz012.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz012.txt
 
@@ -69875,17 +69875,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz012.txt
 centroid = (0.7617629, -1.9318421)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz013.txt
 description = Jackson Hole, Teton County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz013.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz013.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc039.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc039.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz013.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz013.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz013.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz013.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz013.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc039.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc039.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc039.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz013.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz013.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz013.txt
 station = ('kjac', 0.0009953)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc039.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz013.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz013.txt
 
@@ -69893,17 +69893,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz013.txt
 centroid = (0.7489068, -1.9110011)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz014.txt
 description = Wind River Mountains West, Sublette County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz014.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz014.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz014.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz014.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz014.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz014.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz014.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz014.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz014.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz014.txt
 station = ('kpna', 0.0044902)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz014.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz014.txt
 
@@ -69911,17 +69911,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz014.txt
 centroid = (0.7513573, -1.9073918)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz015.txt
 description = Wind River Mountains East, Sublette County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz015.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz015.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz015.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz015.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz015.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz015.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz015.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz015.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz015.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz015.txt
 station = ('klnd', 0.0081432)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz015.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz015.txt
 
@@ -69929,17 +69929,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz015.txt
 centroid = (0.7583543, -1.9083256)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz016.txt
 description = Upper Wind River Basin, Fremont County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz016.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz016.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz016.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz016.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz016.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz016.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz016.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz016.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz016.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz016.txt
 station = ('kdub', 0.0047604)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz016.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz016.txt
 
@@ -69947,17 +69947,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz016.txt
 centroid = (0.7528600, -1.8897622)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz017.txt
 description = Wind River Basin, Fremont County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz017.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz017.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz017.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz017.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz017.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz017.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz017.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz017.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz017.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz017.txt
 station = ('kriw', 0.0025303)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz017.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz017.txt
 
@@ -69965,17 +69965,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz017.txt
 centroid = (0.7469486, -1.8961048)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz018.txt
 description = Lander Foothills, Fremont County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz018.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz018.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc013.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc013.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz018.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz018.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz018.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz018.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz018.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc013.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc013.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc013.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz018.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz018.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz018.txt
 station = ('klnd', 0.0012582)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz018.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz018.txt
 
@@ -69983,17 +69983,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz018.txt
 centroid = (0.7406811, -1.8834494)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz019.txt
 description = Green Mountains and Rattlesnake Range, Sweetwater County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz019.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz019.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz019.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz019.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz019.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz019.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz019.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz019.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz019.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz019.txt
 station = ('klnd', 0.0124292)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz019.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz019.txt
 
@@ -70001,17 +70001,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz019.txt
 centroid = (0.7516435, -1.8618876)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz020.txt
 description = Natrona County Lower Elevations, Natrona County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz020.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz020.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz020.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz020.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz020.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz020.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz020.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz020.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz020.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz020.txt
 station = ('kcpr', 0.0039618)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz020.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz020.txt
 
@@ -70019,17 +70019,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz020.txt
 centroid = (0.7206046, -1.9294196)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz021.txt
 description = Southwest Wyoming, Uinta County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz021.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz021.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc041.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc041.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz021.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz021.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz021.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz021.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz021.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc041.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc041.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc041.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz021.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz021.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz021.txt
 station = ('kfbr', 0.0025901)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc041.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz021.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz021.txt
 
@@ -70037,17 +70037,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz021.txt
 centroid = (0.7436167, -1.8546514)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz022.txt
 description = Casper Mountain, Natrona County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz022.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz022.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc025.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc025.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz022.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz022.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz022.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz022.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz022.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc025.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc025.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc025.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz022.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz022.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz022.txt
 station = ('kcpr', 0.0057513)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz022.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz022.txt
 
@@ -70055,17 +70055,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz022.txt
 centroid = (0.7481075, -1.9370013)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz023.txt
 description = Star Valley, Lincoln County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz023.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz023.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz023.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz023.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz023.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz023.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz023.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz023.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz023.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz023.txt
 station = ('kafo', 0.0027053)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz023.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz023.txt
 
@@ -70073,17 +70073,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz023.txt
 centroid = (0.7428575, -1.9314756)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz024.txt
 description = Salt River and Wyoming Ranges, Sublette County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz024.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz024.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz024.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz024.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz024.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz024.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz024.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz024.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz024.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz024.txt
 station = ('kafo', 0.0043977)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz024.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz024.txt
 
@@ -70091,17 +70091,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz024.txt
 centroid = (0.7501477, -1.9205463)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz025.txt
 description = Upper Green River Basin Foothills, Sublette County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz025.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz025.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc035.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc035.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz025.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz025.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz025.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz025.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz025.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc035.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc035.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc035.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz025.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz025.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz025.txt
 station = ('kpna', 0.0043874)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz025.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz025.txt
 
@@ -70109,17 +70109,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz025.txt
 centroid = (0.7390370, -1.9159230)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz026.txt
 description = Upper Green River Basin, Sweetwater County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz026.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz026.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz026.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz026.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz026.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz026.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz026.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz026.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz026.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz026.txt
 station = ('kbpi', 0.0059227)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz026.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz026.txt
 
@@ -70127,17 +70127,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz026.txt
 centroid = (0.7299176, -1.9295872)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz027.txt
 description = South Lincoln County, Lincoln County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz027.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz027.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc023.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc023.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz027.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz027.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz027.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz027.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz027.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc023.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc023.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc023.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz027.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz027.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz027.txt
 station = ('kemm', 0.0000507)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc023.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz027.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz027.txt
 
@@ -70145,17 +70145,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz027.txt
 centroid = (0.7253222, -1.9141427)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz028.txt
 description = Rock Springs and Green River, Sweetwater County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz028.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz028.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz028.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz028.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz028.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz028.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz028.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz028.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz028.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz028.txt
 station = ('k40u', 0.0099801)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz028.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz028.txt
 
@@ -70163,17 +70163,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz028.txt
 centroid = (0.7198157, -1.9100447)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz029.txt
 description = Flaming Gorge, Sweetwater County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz029.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz029.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz029.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz029.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz029.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz029.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz029.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz029.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz029.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz029.txt
 station = ('k40u', 0.0054783)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz029.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz029.txt
 
@@ -70181,17 +70181,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz029.txt
 centroid = (0.7257114, -1.8922720)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz030.txt
 description = East Sweetwater County, Sweetwater County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz030.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz030.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc037.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc037.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz030.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz030.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz030.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz030.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz030.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc037.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc037.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc037.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz030.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz030.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz030.txt
 station = ('krks', 0.0082414)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz030.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz030.txt
 
@@ -70199,17 +70199,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz030.txt
 centroid = (0.7783470, -1.8421898)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz054.txt
 description = Northern Cambell, Campbell County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz054.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz054.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz054.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz054.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz054.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz054.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz054.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz054.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz054.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz054.txt
 station = ('kgcc', 0.0045844)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz054.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz054.txt
 
@@ -70217,17 +70217,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz054.txt
 centroid = (0.7652152, -1.8421566)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz055.txt
 description = Southern Campbell County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz055.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz055.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc005.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc005.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz055.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz055.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz055.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz055.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz055.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc005.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc005.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc005.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz055.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz055.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz055.txt
 station = ('kgcc', 0.0085475)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc005.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz055.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz055.txt
 
@@ -70235,17 +70235,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz055.txt
 centroid = (0.7788933, -1.8292394)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz056.txt
 description = Western Crook County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz056.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz056.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz056.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz056.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz056.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz056.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz056.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz056.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz056.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz056.txt
 station = ('kw43', 0.0030406)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz056.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz056.txt
 
@@ -70253,17 +70253,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz056.txt
 centroid = (0.7746173, -1.8212423)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz057.txt
 description = Wyoming Black Hills, Weston County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz057.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz057.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz057.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz057.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz057.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz057.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz057.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz057.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz057.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz057.txt
 station = ('kw43', 0.0056015)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz057.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz057.txt
 
@@ -70271,17 +70271,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz057.txt
 centroid = (0.7656306, -1.8288485)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz058.txt
 description = Weston County Plains, Weston County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz058.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz058.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz058.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz058.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz058.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz058.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz058.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz058.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz058.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz058.txt
 station = ('kecs', 0.0059344)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz058.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz058.txt
 
@@ -70289,17 +70289,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz058.txt
 centroid = (0.7630422, -1.8206681)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz059.txt
 description = Newcastle, Weston County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz059.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz059.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc045.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc045.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz059.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz059.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz059.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz059.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz059.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc045.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc045.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc045.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz059.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz059.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz059.txt
 station = ('kecs', 0.0028745)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz059.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz059.txt
 
@@ -70307,17 +70307,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz059.txt
 centroid = (0.7816719, -1.8182875)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz060.txt
 description = Northeastern Crook County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz060.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz060.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc011.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc011.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz060.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz060.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz060.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz060.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz060.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc011.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc011.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc011.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz060.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz060.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz060.txt
 station = ('kw43', 0.0052706)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc011.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz060.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz060.txt
 
@@ -70325,17 +70325,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz060.txt
 centroid = (0.7517831, -1.8406120)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz101.txt
 description = Converse County Lower Elevations, Converse County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz101.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz101.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc009.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc009.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz101.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz101.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz101.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz101.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz101.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc009.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc009.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc009.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz101.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz101.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz101.txt
 station = ('kdgw', 0.0048797)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc009.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz101.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz101.txt
 
@@ -70343,17 +70343,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz101.txt
 centroid = (0.7514777, -1.8234397)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz102.txt
 description = Niobrara County, Niobrara County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz102.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz102.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc027.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc027.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz102.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz102.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz102.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz102.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz102.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc027.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc027.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc027.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz102.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz102.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz102.txt
 station = ('kdgw', 0.0124365)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc027.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz102.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz102.txt
 
@@ -70361,17 +70361,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz102.txt
 centroid = (0.7392080, -1.8434883)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz103.txt
 description = North Laramie Range, Platte County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz103.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz103.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz103.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz103.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz103.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz103.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz103.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz103.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz103.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz103.txt
 station = ('kdgw', 0.0083848)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz103.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz103.txt
 
@@ -70379,17 +70379,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz103.txt
 centroid = (0.7377629, -1.8653730)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz104.txt
 description = Ferris/Seminoe/Shirley Mountains, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz104.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz104.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz104.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz104.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz104.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz104.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz104.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz104.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz104.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz104.txt
 station = ('krwl', 0.0092149)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz104.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz104.txt
 
@@ -70397,17 +70397,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz104.txt
 centroid = (0.7353770, -1.8516949)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz105.txt
 description = Shirley Basin, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz105.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz105.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz105.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz105.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz105.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz105.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz105.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz105.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz105.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz105.txt
 station = ('kehy', 0.0085654)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz105.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz105.txt
 
@@ -70415,17 +70415,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz105.txt
 centroid = (0.7309055, -1.8365105)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz106.txt
 description = Central Laramie Range and Southwest Platte County, Platte County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz106.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz106.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz106.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz106.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz106.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz106.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz106.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz106.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz106.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz106.txt
 station = ('kean', 0.0049299)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz106.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz106.txt
 
@@ -70433,17 +70433,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz106.txt
 centroid = (0.7371800, -1.8305380)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz107.txt
 description = East Platte County, Platte County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz107.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz107.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc031.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc031.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz107.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz107.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz107.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz107.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz107.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc031.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc031.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc031.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz107.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz107.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz107.txt
 station = ('kgur', 0.0020286)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz107.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz107.txt
 
@@ -70451,17 +70451,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz107.txt
 centroid = (0.7345742, -1.8213087)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz108.txt
 description = Goshen County, Goshen County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz108.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz108.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc015.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc015.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz108.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz108.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz108.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz108.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz108.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc015.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc015.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc015.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz108.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz108.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz108.txt
 station = ('ktor', 0.0027162)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc015.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz108.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz108.txt
 
@@ -70469,17 +70469,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz108.txt
 centroid = (0.7299037, -1.8693000)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz109.txt
 description = Central Carbon County, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz109.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz109.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz109.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz109.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz109.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz109.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz109.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz109.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz109.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz109.txt
 station = ('krwl', 0.0013111)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz109.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz109.txt
 
@@ -70487,17 +70487,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz109.txt
 centroid = (0.7276347, -1.8545694)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz110.txt
 description = North Snowy Range Foothills, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz110.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz110.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz110.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz110.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz110.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz110.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz110.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz110.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz110.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz110.txt
 station = ('kehy', 0.0026817)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz110.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz110.txt
 
@@ -70505,17 +70505,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz110.txt
 centroid = (0.7205801, -1.8798889)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz111.txt
 description = Southwest Carbon County, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz111.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz111.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz111.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz111.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz111.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz111.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz111.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz111.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz111.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz111.txt
 station = ('kdwx', 0.0051508)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz111.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz111.txt
 
@@ -70523,17 +70523,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz111.txt
 centroid = (0.7185433, -1.8692302)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz112.txt
 description = Sierra Madre Range, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz112.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz112.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz112.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz112.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz112.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz112.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz112.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz112.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz112.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz112.txt
 station = ('kdwx', 0.0057132)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz112.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz112.txt
 
@@ -70541,17 +70541,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz112.txt
 centroid = (0.7223342, -1.8635107)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz113.txt
 description = Upper North Platte River Basin, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz113.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz113.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz113.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz113.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz113.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz113.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz113.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz113.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz113.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz113.txt
 station = ('ksaa', 0.0012278)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz113.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz113.txt
 
@@ -70559,17 +70559,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz113.txt
 centroid = (0.7209973, -1.8555433)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz114.txt
 description = Snowy Range, Carbon County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz114.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz114.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc007.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc007.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz114.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz114.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz114.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz114.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz114.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc007.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc007.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc007.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz114.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz114.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz114.txt
 station = ('kehy', 0.0074887)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz114.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz114.txt
 
@@ -70577,17 +70577,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz114.txt
 centroid = (0.7225750, -1.8458847)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz115.txt
 description = Laramie Valley, Albany County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz115.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz115.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc001.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc001.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz115.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz115.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz115.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz115.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz115.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc001.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc001.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc001.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz115.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz115.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz115.txt
 station = ('klar', 0.0019186)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc001.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz115.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz115.txt
 
@@ -70595,17 +70595,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz115.txt
 centroid = (0.7205609, -1.8391739)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz116.txt
 description = South Laramie Range, Laramie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz116.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz116.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz116.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz116.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz116.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz116.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz116.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz116.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz116.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz116.txt
 station = ('klar', 0.0038391)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz116.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz116.txt
 
@@ -70613,17 +70613,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz116.txt
 centroid = (0.7210583, -1.8331612)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz117.txt
 description = South Laramie Range Foothills, Laramie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz117.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz117.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz117.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz117.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz117.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz117.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz117.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz117.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz117.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz117.txt
 station = ('kfew', 0.0038232)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz117.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz117.txt
 
@@ -70631,17 +70631,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz117.txt
 centroid = (0.7213044, -1.8265673)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz118.txt
 description = Central Laramie County, Laramie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz118.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz118.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz118.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz118.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz118.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz118.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz118.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz118.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz118.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz118.txt
 station = ('kcys', 0.0036415)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz118.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz118.txt
 
@@ -70649,17 +70649,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz118.txt
 centroid = (0.7205609, -1.8192213)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz119.txt
 description = East Laramie County, Laramie County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz119.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz119.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc021.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc021.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz119.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz119.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz119.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz119.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz119.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc021.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc021.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc021.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz119.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz119.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz119.txt
 station = ('kcys', 0.0077997)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz119.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz119.txt
 
@@ -70667,17 +70667,17 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz119.txt
 centroid = (0.7813944, -1.8760893)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz198.txt
 description = Northeast Big Horn Mountains, Sheridan County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz198.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz198.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz198.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz198.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz198.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz198.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz198.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz198.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz198.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz198.txt
 station = ('kgey', 0.0085769)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz198.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz198.txt
 
@@ -70685,16 +70685,16 @@ zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz198.txt
 centroid = (0.7818674, -1.8614704)
 coastal_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/coastal/wy/wyz199.txt
 description = Sheridan Foothills, Sheridan County, WY, US
-flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyz199.txt
-flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyz199.txt
+flash_flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/statement/wy/wyc033.txt
+flash_flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/warning/wy/wyc033.txt
 flash_flood_watch = https://tgftp.nws.noaa.gov/data/watches_warnings/flash_flood/watch/wy/wyz199.txt
-flood_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/statement/wy/wyz199.txt
-flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyz199.txt
-severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyz199.txt
-severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyz199.txt
+flood_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/flood/warning/wy/wyc033.txt
+severe_thunderstorm_warning = https://tgftp.nws.noaa.gov/data/watches_warnings/thunderstorm/wy/wyc033.txt
+severe_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/severe_weather_stmt/wy/wyc033.txt
 short_term_forecast = https://tgftp.nws.noaa.gov/data/forecasts/nowcast/wy/wyz199.txt
 special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/special_weather_stmt/wy/wyz199.txt
 state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz199.txt
 station = ('kshr', 0.0039061)
+tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc033.txt
 urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz199.txt
 zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz199.txt